diff --git a/data/bedrock/1.16.201/protocol.json b/data/bedrock/1.16.201/protocol.json index 24715e01e..d016ad394 100644 --- a/data/bedrock/1.16.201/protocol.json +++ b/data/bedrock/1.16.201/protocol.json @@ -1,5 +1,36 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -4859,6 +4890,37 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "build_and_mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -5531,6 +5593,26 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -6389,6 +6471,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -6974,6 +7073,39 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint", + "flags": { + "ascend": 1, + "descend": 2, + "north_jump": 4, + "jump_down": 8, + "sprint_down": 16, + "change_height": 32, + "jumping": 64, + "auto_jumping_in_water": 128, + "sneaking": 256, + "sneak_down": 512, + "up": 1024, + "down": 2048, + "left": 4096, + "right": 8192, + "up_left": 16384, + "up_right": 32768, + "want_up": 65536, + "want_down": 131072, + "want_down_slow": 262144, + "want_up_slow": 524288, + "sprinting": 1048576, + "ascend_scaffolding": 2097152, + "descend_scaffolding": 4194304, + "sneak_toggle_down": 8388608, + "persist_sneak": 16777216 + } + } + ], "packet_creative_content": [ "container", [ @@ -7071,6 +7203,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -7316,150 +7460,6 @@ "type": "bool" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "build_and_mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664 - } - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 6, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint", - "flags": { - "ascend": 1, - "descend": 2, - "north_jump": 4, - "jump_down": 8, - "sprint_down": 16, - "change_height": 32, - "jumping": 64, - "auto_jumping_in_water": 128, - "sneaking": 256, - "sneak_down": 512, - "up": 1024, - "down": 2048, - "left": 4096, - "right": 8192, - "up_left": 16384, - "up_right": 32768, - "want_up": 65536, - "want_down": 131072, - "want_down_slow": 262144, - "want_up_slow": 524288, - "sprinting": 1048576, - "ascend_scaffolding": 2097152, - "descend_scaffolding": 4194304, - "sneak_toggle_down": 8388608, - "persist_sneak": 16777216 - } - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.16.210/protocol.json b/data/bedrock/1.16.210/protocol.json index e945d4c0f..53beb2dea 100644 --- a/data/bedrock/1.16.210/protocol.json +++ b/data/bedrock/1.16.210/protocol.json @@ -1,5 +1,36 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -625,6 +656,119 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special" + ] + } + ], "Link": [ "container", [ @@ -4150,6 +4294,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5023,6 +5180,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -5702,6 +5892,26 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -6610,6 +6820,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -7342,35 +7569,81 @@ } ] ], - "packet_creative_content": [ - "container", - [ - { - "name": "items", - "type": "ItemStacks" - } - ] - ], - "packet_player_enchant_options": [ - "container", - [ - { - "name": "enchant_options", - "type": "EnchantOptions" - } - ] - ], - "packet_item_stack_request": [ - "container", - [ - { - "name": "requests", - "type": [ - "array", - { - "countType": "varint", - "type": "ItemStackRequest" - } + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_scaffolding", + "descend_scaffolding", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], + "packet_creative_content": [ + "container", + [ + { + "name": "items", + "type": "ItemStacks" + } + ] + ], + "packet_player_enchant_options": [ + "container", + [ + { + "name": "enchant_options", + "type": "EnchantOptions" + } + ] + ], + "packet_item_stack_request": [ + "container", + [ + { + "name": "requests", + "type": [ + "array", + { + "countType": "varint", + "type": "ItemStackRequest" + } ] } ] @@ -7445,6 +7718,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -7767,291 +8052,6 @@ ] } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 6, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_scaffolding", - "descend_scaffolding", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.16.220/protocol.json b/data/bedrock/1.16.220/protocol.json index 257612a8d..ca4930ec7 100644 --- a/data/bedrock/1.16.220/protocol.json +++ b/data/bedrock/1.16.220/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -793,6 +836,119 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special" + ] + } + ], "Link": [ "container", [ @@ -4584,6 +4740,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5476,6 +5645,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -5701,6 +5903,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6301,6 +6515,26 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -7368,6 +7602,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -8216,11 +8467,57 @@ } ] ], - "packet_creative_content": [ - "container", - [ - { - "name": "items", + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_scaffolding", + "descend_scaffolding", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], + "packet_creative_content": [ + "container", + [ + { + "name": "items", "type": [ "array", { @@ -8343,6 +8640,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -8665,315 +8974,6 @@ ] } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 6, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_scaffolding", - "descend_scaffolding", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.17.0/protocol.json b/data/bedrock/1.17.0/protocol.json index 42c9bd877..b0b452b70 100644 --- a/data/bedrock/1.17.0/protocol.json +++ b/data/bedrock/1.17.0/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -796,6 +839,122 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead" + ] + } + ], "Link": [ "container", [ @@ -4662,6 +4821,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5554,6 +5726,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -5780,6 +5985,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6380,6 +6597,26 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -7447,6 +7684,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -8295,8 +8549,54 @@ } ] ], - "packet_creative_content": [ - "container", + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_scaffolding", + "descend_scaffolding", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], + "packet_creative_content": [ + "container", [ { "name": "items", @@ -8422,6 +8722,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -8775,318 +9087,6 @@ "type": "varint64" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 6, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_scaffolding", - "descend_scaffolding", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.17.10/protocol.json b/data/bedrock/1.17.10/protocol.json index b9f8ad82a..13a2b7949 100644 --- a/data/bedrock/1.17.10/protocol.json +++ b/data/bedrock/1.17.10/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -796,6 +839,122 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead" + ] + } + ], "Link": [ "container", [ @@ -4672,6 +4831,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5644,6 +5816,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -5870,6 +6075,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6470,6 +6687,26 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -7563,6 +7800,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -8411,8 +8665,54 @@ } ] ], - "packet_creative_content": [ - "container", + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], + "packet_creative_content": [ + "container", [ { "name": "items", @@ -8538,6 +8838,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -8949,318 +9261,6 @@ "type": "string" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 6, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.17.30/protocol.json b/data/bedrock/1.17.30/protocol.json index 0c56b9329..d4f9e6f6f 100644 --- a/data/bedrock/1.17.30/protocol.json +++ b/data/bedrock/1.17.30/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -796,6 +839,122 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead" + ] + } + ], "Link": [ "container", [ @@ -4778,6 +4937,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5772,6 +5944,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -5998,6 +6203,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6598,6 +6815,31 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -7707,20 +7949,37 @@ } ] ], - "packet_set_scoreboard_identity": [ - "container", - [ - { - "name": "action", - "type": [ - "mapper", - { - "type": "i8", - "mappings": { - "0": "register_identity", - "1": "clear_identity" - } - } + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], + "packet_set_scoreboard_identity": [ + "container", + [ + { + "name": "action", + "type": [ + "mapper", + { + "type": "i8", + "mappings": { + "0": "register_identity", + "1": "clear_identity" + } + } ] }, { @@ -8629,6 +8888,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -8756,6 +9061,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -9247,323 +9564,6 @@ "type": "zigzag64" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.17.40/protocol.json b/data/bedrock/1.17.40/protocol.json index 15456982e..dabf94cf2 100644 --- a/data/bedrock/1.17.40/protocol.json +++ b/data/bedrock/1.17.40/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -796,6 +839,122 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead" + ] + } + ], "Link": [ "container", [ @@ -4806,6 +4965,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5773,6 +5945,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -5999,6 +6204,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6599,6 +6816,31 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -7708,20 +7950,37 @@ } ] ], - "packet_set_scoreboard_identity": [ - "container", - [ - { - "name": "action", - "type": [ - "mapper", - { - "type": "i8", - "mappings": { - "0": "register_identity", - "1": "clear_identity" - } - } + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], + "packet_set_scoreboard_identity": [ + "container", + [ + { + "name": "action", + "type": [ + "mapper", + { + "type": "i8", + "mappings": { + "0": "register_identity", + "1": "clear_identity" + } + } ] }, { @@ -8630,6 +8889,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -8757,6 +9062,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -9344,323 +9661,6 @@ "type": "zigzag32" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.18.0/protocol.json b/data/bedrock/1.18.0/protocol.json index e0ef980fd..7ca8e666f 100644 --- a/data/bedrock/1.18.0/protocol.json +++ b/data/bedrock/1.18.0/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -796,6 +839,122 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead" + ] + } + ], "Link": [ "container", [ @@ -4820,6 +4979,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5818,6 +5990,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6044,6 +6249,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6644,6 +6861,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -7753,15 +8000,32 @@ } ] ], - "packet_set_scoreboard_identity": [ - "container", - [ - { - "name": "action", - "type": [ - "mapper", - { - "type": "i8", + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], + "packet_set_scoreboard_identity": [ + "container", + [ + { + "name": "action", + "type": [ + "mapper", + { + "type": "i8", "mappings": { "0": "register_identity", "1": "clear_identity" @@ -8675,6 +8939,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -8802,6 +9112,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -9406,328 +9728,6 @@ "type": "zigzag32" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.18.11/protocol.json b/data/bedrock/1.18.11/protocol.json index 709b5ab46..b144216b9 100644 --- a/data/bedrock/1.18.11/protocol.json +++ b/data/bedrock/1.18.11/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -796,6 +839,126 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob" + ] + } + ], "Link": [ "container", [ @@ -4855,6 +5018,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5853,6 +6029,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6092,6 +6301,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6702,6 +6923,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -7811,11 +8062,28 @@ } ] ], - "packet_set_scoreboard_identity": [ - "container", - [ - { - "name": "action", + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], + "packet_set_scoreboard_identity": [ + "container", + [ + { + "name": "action", "type": [ "mapper", { @@ -8733,6 +9001,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -8860,6 +9174,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -9662,332 +9988,6 @@ "type": "string" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.18.30/protocol.json b/data/bedrock/1.18.30/protocol.json index 58e463444..d2ac04c68 100644 --- a/data/bedrock/1.18.30/protocol.json +++ b/data/bedrock/1.18.30/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -800,6 +843,130 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging" + ] + } + ], "Link": [ "container", [ @@ -4933,6 +5100,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5936,6 +6116,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6175,6 +6388,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6787,6 +7012,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -7896,7 +8151,24 @@ } ] ], - "packet_set_scoreboard_identity": [ + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], + "packet_set_scoreboard_identity": [ "container", [ { @@ -8822,6 +9094,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -8949,6 +9267,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -9900,336 +10230,6 @@ "type": "lf32" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.1/protocol.json b/data/bedrock/1.19.1/protocol.json index e70516d42..90e1d7f8d 100644 --- a/data/bedrock/1.19.1/protocol.json +++ b/data/bedrock/1.19.1/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -800,6 +843,130 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging" + ] + } + ], "Link": [ "container", [ @@ -4982,6 +5149,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -5979,6 +6159,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6222,6 +6435,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6838,6 +7063,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -7947,7 +8202,24 @@ } ] ], - "packet_set_scoreboard_identity": [ + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], + "packet_set_scoreboard_identity": [ "container", [ { @@ -8887,6 +9159,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9014,6 +9332,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10056,349 +10386,6 @@ } ] ], - "packet_toast_request": [ - "container", - [ - { - "name": "title", - "type": "string" - }, - { - "name": "message", - "type": "string" - } - ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], "RequestPermissions": [ "bitflags", { @@ -10414,6 +10401,19 @@ "teleport": 128 } } + ], + "packet_toast_request": [ + "container", + [ + { + "name": "title", + "type": "string" + }, + { + "name": "message", + "type": "string" + } + ] ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.10/protocol.json b/data/bedrock/1.19.10/protocol.json index a450113dd..33aad56c6 100644 --- a/data/bedrock/1.19.10/protocol.json +++ b/data/bedrock/1.19.10/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -800,6 +843,130 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging" + ] + } + ], "Link": [ "container", [ @@ -3641,6 +3808,33 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5059,6 +5253,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6045,6 +6252,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6288,6 +6528,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -6904,8 +7156,38 @@ } ] ], - "packet_command_request": [ - "container", + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], + "packet_command_request": [ + "container", [ { "name": "command", @@ -8013,6 +8295,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -8953,6 +9252,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9080,6 +9425,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10122,6 +10479,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10214,379 +10587,6 @@ "type": "nbt" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.20/protocol.json b/data/bedrock/1.19.20/protocol.json index cf2e88a80..c03f7c9b4 100644 --- a/data/bedrock/1.19.20/protocol.json +++ b/data/bedrock/1.19.20/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -800,6 +843,130 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging" + ] + } + ], "Link": [ "container", [ @@ -3679,6 +3846,33 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5129,6 +5323,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6115,6 +6322,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6358,6 +6598,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -7000,8 +7252,38 @@ } ] ], - "packet_command_request": [ - "container", + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], + "packet_command_request": [ + "container", [ { "name": "command", @@ -8156,6 +8438,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9118,6 +9417,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9245,6 +9590,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10287,6 +10644,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10406,379 +10779,6 @@ ] } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.21/protocol.json b/data/bedrock/1.19.21/protocol.json index cf2e88a80..c03f7c9b4 100644 --- a/data/bedrock/1.19.21/protocol.json +++ b/data/bedrock/1.19.21/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -800,6 +843,130 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging" + ] + } + ], "Link": [ "container", [ @@ -3679,6 +3846,33 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5129,6 +5323,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6115,6 +6322,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6358,6 +6598,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -7000,8 +7252,38 @@ } ] ], - "packet_command_request": [ - "container", + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], + "packet_command_request": [ + "container", [ { "name": "command", @@ -8156,6 +8438,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9118,6 +9417,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9245,6 +9590,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10287,6 +10644,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10406,379 +10779,6 @@ ] } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.30/protocol.json b/data/bedrock/1.19.30/protocol.json index 79dd6d888..495b7d88f 100644 --- a/data/bedrock/1.19.30/protocol.json +++ b/data/bedrock/1.19.30/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -800,6 +843,130 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging" + ] + } + ], "Link": [ "container", [ @@ -3761,6 +3928,33 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5229,6 +5423,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6215,6 +6422,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6458,6 +6698,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -7100,8 +7352,38 @@ } ] ], - "packet_command_request": [ - "container", + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], + "packet_command_request": [ + "container", [ { "name": "command", @@ -8260,6 +8542,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9247,6 +9546,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9374,6 +9719,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10416,6 +10773,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10619,379 +10992,6 @@ "type": "string" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.40/protocol.json b/data/bedrock/1.19.40/protocol.json index b0c2dacce..70e73c220 100644 --- a/data/bedrock/1.19.40/protocol.json +++ b/data/bedrock/1.19.40/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -803,6 +846,130 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging" + ] + } + ], "Link": [ "container", [ @@ -3819,6 +3986,33 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5296,6 +5490,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6287,6 +6494,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6530,6 +6770,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -7172,8 +7424,38 @@ } ] ], - "packet_command_request": [ - "container", + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], + "packet_command_request": [ + "container", [ { "name": "command", @@ -8332,6 +8614,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9319,6 +9618,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9446,6 +9791,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10488,6 +10845,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10691,379 +11064,6 @@ "type": "string" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.50/protocol.json b/data/bedrock/1.19.50/protocol.json index 16faf9aec..a5d8911fc 100644 --- a/data/bedrock/1.19.50/protocol.json +++ b/data/bedrock/1.19.50/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -803,6 +846,134 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space" + ] + } + ], "Link": [ "container", [ @@ -3833,6 +4004,33 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5312,6 +5510,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6303,6 +6514,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6546,6 +6790,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -7188,6 +7444,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8348,6 +8634,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9337,6 +9640,52 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9464,6 +9813,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10506,6 +10867,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10710,6 +11087,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -10722,397 +11113,6 @@ "type": "vec3f" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.60/protocol.json b/data/bedrock/1.19.60/protocol.json index bfa619a14..b6dab71a3 100644 --- a/data/bedrock/1.19.60/protocol.json +++ b/data/bedrock/1.19.60/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -803,6 +846,134 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space" + ] + } + ], "Link": [ "container", [ @@ -3868,6 +4039,33 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5353,6 +5551,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6344,6 +6555,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6587,6 +6831,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -7229,6 +7485,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8393,6 +8679,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9391,6 +9694,53 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9518,6 +9868,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10560,6 +10922,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10764,6 +11142,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -10803,398 +11195,6 @@ ] } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.62/protocol.json b/data/bedrock/1.19.62/protocol.json index b42a5b6f6..246ab9907 100644 --- a/data/bedrock/1.19.62/protocol.json +++ b/data/bedrock/1.19.62/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -803,6 +846,134 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space" + ] + } + ], "Link": [ "container", [ @@ -3872,6 +4043,33 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5357,6 +5555,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6348,6 +6559,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6591,6 +6835,18 @@ } ] ], + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], "packet_clientbound_map_item_data": [ "container", [ @@ -7233,6 +7489,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8397,6 +8683,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9395,6 +9698,53 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9522,6 +9872,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10564,6 +10926,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10768,6 +11146,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -10807,398 +11199,6 @@ ] } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.70/protocol.json b/data/bedrock/1.19.70/protocol.json index f4117158c..4c20213e0 100644 --- a/data/bedrock/1.19.70/protocol.json +++ b/data/bedrock/1.19.70/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -803,6 +846,138 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching" + ] + } + ], "Link": [ "container", [ @@ -3884,6 +4059,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5375,6 +5578,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6366,6 +6582,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6609,13 +6858,25 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", - [ - { - "name": "map_id", - "type": "zigzag64" - }, + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", + [ + { + "name": "map_id", + "type": "zigzag64" + }, { "name": "update_flags", "type": "UpdateMapFlags" @@ -7251,6 +7512,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8415,6 +8706,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9417,6 +9725,54 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9544,6 +9900,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10586,6 +10954,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10790,6 +11174,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -10866,404 +11264,6 @@ "type": "nbt" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.19.80/protocol.json b/data/bedrock/1.19.80/protocol.json index fc54ce040..710218f3a 100644 --- a/data/bedrock/1.19.80/protocol.json +++ b/data/bedrock/1.19.80/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -803,6 +846,138 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching" + ] + } + ], "Link": [ "container", [ @@ -3919,6 +4094,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5428,6 +5631,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6425,6 +6641,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6668,13 +6917,25 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", - [ - { - "name": "map_id", - "type": "zigzag64" - }, + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", + [ + { + "name": "map_id", + "type": "zigzag64" + }, { "name": "update_flags", "type": "UpdateMapFlags" @@ -7314,6 +7575,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8478,6 +8769,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9480,6 +9788,54 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9607,6 +9963,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10649,6 +11017,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10853,6 +11237,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11004,404 +11402,6 @@ "type": "bool" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.20.0/protocol.json b/data/bedrock/1.20.0/protocol.json index c50f6e119..f1e51ffa6 100644 --- a/data/bedrock/1.20.0/protocol.json +++ b/data/bedrock/1.20.0/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -803,6 +846,138 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching" + ] + } + ], "Link": [ "container", [ @@ -3925,6 +4100,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5438,6 +5641,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6435,6 +6651,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6679,13 +6928,25 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", - [ - { - "name": "map_id", - "type": "zigzag64" - }, + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", + [ + { + "name": "map_id", + "type": "zigzag64" + }, { "name": "update_flags", "type": "UpdateMapFlags" @@ -7325,6 +7586,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8489,6 +8780,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9499,6 +9807,54 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9626,6 +9982,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10668,6 +11036,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10872,6 +11256,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11035,404 +11433,6 @@ "type": "bool" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.20.10/protocol.json b/data/bedrock/1.20.10/protocol.json index d7b918543..3228eaea3 100644 --- a/data/bedrock/1.20.10/protocol.json +++ b/data/bedrock/1.20.10/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -804,6 +847,139 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching", + "crawling" + ] + } + ], "Link": [ "container", [ @@ -3929,6 +4105,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5444,6 +5648,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6441,6 +6658,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6685,12 +6935,24 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", - [ - { - "name": "map_id", - "type": "zigzag64" + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", + [ + { + "name": "map_id", + "type": "zigzag64" }, { "name": "update_flags", @@ -7395,6 +7657,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8559,6 +8851,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9570,6 +9879,57 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting", + "missed_swing", + "start_crawling", + "stop_crawling" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9697,6 +10057,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10739,6 +11111,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -10943,6 +11331,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11128,408 +11530,6 @@ "type": "varint64" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching", - "crawling" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting", - "missed_swing", - "start_crawling", - "stop_crawling" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.20.30/protocol.json b/data/bedrock/1.20.30/protocol.json index 4237c718b..e79a95af8 100644 --- a/data/bedrock/1.20.30/protocol.json +++ b/data/bedrock/1.20.30/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -849,6 +892,139 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching", + "crawling" + ] + } + ], "Link": [ "container", [ @@ -3983,6 +4159,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5567,6 +5771,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6564,6 +6781,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6808,12 +7058,24 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", - [ - { - "name": "map_id", - "type": "zigzag64" + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", + [ + { + "name": "map_id", + "type": "zigzag64" }, { "name": "update_flags", @@ -7518,6 +7780,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8682,6 +8974,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9693,6 +10002,59 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting", + "missed_swing", + "start_crawling", + "stop_crawling", + "start_flying", + "stop_flying" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9820,6 +10182,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10862,6 +11236,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -11066,6 +11456,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11392,410 +11796,6 @@ "packet_refresh_entitlements": [ "container", [] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching", - "crawling" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting", - "missed_swing", - "start_crawling", - "stop_crawling", - "start_flying", - "stop_flying" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.20.40/protocol.json b/data/bedrock/1.20.40/protocol.json index ad30cc56f..2e8465757 100644 --- a/data/bedrock/1.20.40/protocol.json +++ b/data/bedrock/1.20.40/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -849,6 +892,142 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching", + "crawling", + "timer_flag_1", + "timer_flag_2", + "timer_flag_3" + ] + } + ], "Link": [ "container", [ @@ -4008,6 +4187,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5695,6 +5902,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6692,6 +6912,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6936,9 +7189,21 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", - [ + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", + [ { "name": "map_id", "type": "zigzag64" @@ -7646,6 +7911,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8810,6 +9105,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9821,6 +10133,60 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting", + "missed_swing", + "start_crawling", + "stop_crawling", + "start_flying", + "stop_flying", + "received_server_data" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9948,6 +10314,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -10990,6 +11368,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -11194,6 +11588,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11520,414 +11928,6 @@ "packet_refresh_entitlements": [ "container", [] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching", - "crawling", - "timer_flag_1", - "timer_flag_2", - "timer_flag_3" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting", - "missed_swing", - "start_crawling", - "stop_crawling", - "start_flying", - "stop_flying", - "received_server_data" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.20.50/protocol.json b/data/bedrock/1.20.50/protocol.json index 5566ae780..8a36dd41c 100644 --- a/data/bedrock/1.20.50/protocol.json +++ b/data/bedrock/1.20.50/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -866,6 +909,142 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching", + "crawling", + "timer_flag_1", + "timer_flag_2", + "timer_flag_3" + ] + } + ], "Link": [ "container", [ @@ -4037,6 +4216,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5730,6 +5937,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6729,6 +6949,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6973,9 +7226,21 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", - [ + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", + [ { "name": "map_id", "type": "zigzag64" @@ -7683,6 +7948,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8857,6 +9152,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9868,6 +10180,60 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting", + "missed_swing", + "start_crawling", + "stop_crawling", + "start_flying", + "stop_flying", + "received_server_data" + ] + } + ], "packet_creative_content": [ "container", [ @@ -9995,6 +10361,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -11037,6 +11415,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -11241,6 +11635,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11665,414 +12073,6 @@ "type": "vec3f" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching", - "crawling", - "timer_flag_1", - "timer_flag_2", - "timer_flag_3" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting", - "missed_swing", - "start_crawling", - "stop_crawling", - "start_flying", - "stop_flying", - "received_server_data" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.20.61/protocol.json b/data/bedrock/1.20.61/protocol.json index 209d03d01..ddd479c47 100644 --- a/data/bedrock/1.20.61/protocol.json +++ b/data/bedrock/1.20.61/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -866,6 +909,142 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching", + "crawling", + "timer_flag_1", + "timer_flag_2", + "timer_flag_3" + ] + } + ], "Link": [ "container", [ @@ -4041,6 +4220,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5732,6 +5939,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6736,6 +6956,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -6984,9 +7237,21 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", - [ + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", + [ { "name": "map_id", "type": "zigzag64" @@ -7694,6 +7959,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8868,6 +9163,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9874,6 +10186,61 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting", + "missed_swing", + "start_crawling", + "stop_crawling", + "start_flying", + "stop_flying", + "received_server_data", + "client_predicted_vehicle" + ] + } + ], "packet_creative_content": [ "container", [ @@ -10001,6 +10368,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -11043,6 +11422,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -11247,6 +11642,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11718,415 +12127,6 @@ "type": "vec3f" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching", - "crawling", - "timer_flag_1", - "timer_flag_2", - "timer_flag_3" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting", - "missed_swing", - "start_crawling", - "stop_crawling", - "start_flying", - "stop_flying", - "received_server_data", - "client_predicted_vehicle" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.20.71/protocol.json b/data/bedrock/1.20.71/protocol.json index 682abb566..85f7a7662 100644 --- a/data/bedrock/1.20.71/protocol.json +++ b/data/bedrock/1.20.71/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -866,6 +909,142 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching", + "crawling", + "timer_flag_1", + "timer_flag_2", + "timer_flag_3" + ] + } + ], "Link": [ "container", [ @@ -4065,6 +4244,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5758,6 +5965,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6774,6 +6994,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -7022,9 +7275,21 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", - [ + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", + [ { "name": "map_id", "type": "zigzag64" @@ -7723,6 +7988,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8897,6 +9192,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9911,6 +10223,63 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting", + "missed_swing", + "start_crawling", + "stop_crawling", + "start_flying", + "stop_flying", + "received_server_data", + "client_predicted_vehicle", + "paddling_left", + "paddling_right" + ] + } + ], "packet_creative_content": [ "container", [ @@ -10038,6 +10407,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -11080,6 +11461,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -11284,6 +11681,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11755,417 +12166,6 @@ "type": "vec3f" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching", - "crawling", - "timer_flag_1", - "timer_flag_2", - "timer_flag_3" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting", - "missed_swing", - "start_crawling", - "stop_crawling", - "start_flying", - "stop_flying", - "received_server_data", - "client_predicted_vehicle", - "paddling_left", - "paddling_right" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.20.80/protocol.json b/data/bedrock/1.20.80/protocol.json index 74299f8ff..c97d9a04d 100644 --- a/data/bedrock/1.20.80/protocol.json +++ b/data/bedrock/1.20.80/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -866,6 +909,143 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching", + "crawling", + "timer_flag_1", + "timer_flag_2", + "timer_flag_3", + "body_rotation_blocked" + ] + } + ], "Link": [ "container", [ @@ -4084,6 +4264,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5803,6 +6011,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6820,6 +7041,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -7068,8 +7322,20 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", [ { "name": "map_id", @@ -7769,6 +8035,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -8943,6 +9239,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -9957,6 +10270,63 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting", + "missed_swing", + "start_crawling", + "stop_crawling", + "start_flying", + "stop_flying", + "received_server_data", + "client_predicted_vehicle", + "paddling_left", + "paddling_right" + ] + } + ], "packet_creative_content": [ "container", [ @@ -10084,6 +10454,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -11143,6 +11525,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -11347,6 +11745,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11820,418 +12232,6 @@ "type": "vec3f" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching", - "crawling", - "timer_flag_1", - "timer_flag_2", - "timer_flag_3", - "body_rotation_blocked" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting", - "missed_swing", - "start_crawling", - "stop_crawling", - "start_flying", - "stop_flying", - "received_server_data", - "client_predicted_vehicle", - "paddling_left", - "paddling_right" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/bedrock/1.21.0/blockCollisionShapes.json b/data/bedrock/1.21.0/blockCollisionShapes.json new file mode 100644 index 000000000..59b6d92b0 --- /dev/null +++ b/data/bedrock/1.21.0/blockCollisionShapes.json @@ -0,0 +1,1426 @@ +{ + "blocks": { + "air": [0], + "stone": [1], + "granite": [1], + "polished_granite": [1], + "diorite": [1], + "polished_diorite": [1], + "andesite": [1], + "polished_andesite": [1], + "grass_block": [1], + "dirt": [1, 1], + "podzol": [1], + "cobblestone": [1], + "oak_planks": [1], + "spruce_planks": [1], + "birch_planks": [1], + "jungle_planks": [1], + "acacia_planks": [1], + "cherry_planks": [1], + "dark_oak_planks": [1], + "mangrove_planks": [1], + "bamboo_planks": [1], + "bamboo_mosaic": [1], + "oak_sapling": [0, 0], + "spruce_sapling": [0, 0], + "birch_sapling": [0, 0], + "jungle_sapling": [0, 0], + "acacia_sapling": [0, 0], + "cherry_sapling": [0, 0], + "dark_oak_sapling": [0, 0], + "mangrove_propagule": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "bedrock": [1, 0], + "flowing_water": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "water": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "lava": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "flowing_lava": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sand": [1, 1], + "suspicious_sand": [1, 0, 1, 0, 1, 0, 1, 0], + "gravel": [1], + "suspicious_gravel": [1, 0, 1, 0, 1, 0, 1, 0], + "gold_ore": [1], + "deepslate_gold_ore": [1], + "iron_ore": [1], + "deepslate_iron_ore": [1], + "coal_ore": [1], + "deepslate_coal_ore": [1], + "nether_gold_ore": [1], + "oak_log": [1, 1, 1], + "spruce_log": [1, 1, 1], + "birch_log": [1, 1, 1], + "jungle_log": [1, 1, 1], + "acacia_log": [1, 1, 1], + "cherry_log": [1, 1, 1], + "dark_oak_log": [1, 1, 1], + "mangrove_log": [1, 1, 1], + "mangrove_roots": [1], + "muddy_mangrove_roots": [1, 1, 1], + "bamboo_block": [1, 1, 1], + "stripped_spruce_log": [1, 1, 1], + "stripped_birch_log": [1, 1, 1], + "stripped_jungle_log": [1, 1, 1], + "stripped_acacia_log": [1, 1, 1], + "stripped_cherry_log": [1, 1, 1], + "stripped_dark_oak_log": [1, 1, 1], + "stripped_oak_log": [1, 1, 1], + "stripped_mangrove_log": [1, 1, 1], + "stripped_bamboo_block": [1, 1, 1], + "oak_wood": [1, 1, 1], + "spruce_wood": [1, 1, 1], + "birch_wood": [1, 1, 1], + "jungle_wood": [1, 1, 1], + "acacia_wood": [1, 1, 1], + "cherry_wood": [1, 0, 1, 0, 1, 0], + "dark_oak_wood": [1, 1, 1], + "mangrove_wood": [1, 0, 1, 0, 1, 0], + "stripped_oak_wood": [1, 1, 1], + "stripped_spruce_wood": [1, 1, 1], + "stripped_birch_wood": [1, 1, 1], + "stripped_jungle_wood": [1, 1, 1], + "stripped_acacia_wood": [1, 1, 1], + "stripped_cherry_wood": [1, 1, 1], + "stripped_dark_oak_wood": [1, 1, 1], + "stripped_mangrove_wood": [1, 1, 1], + "oak_leaves": [1, 0, 1, 0], + "spruce_leaves": [1, 0, 1, 0], + "birch_leaves": [1, 0, 1, 0], + "jungle_leaves": [1, 0, 1, 0], + "acacia_leaves": [1, 0, 1, 0], + "cherry_leaves": [1, 0, 1, 0], + "dark_oak_leaves": [1, 0, 1, 0], + "mangrove_leaves": [1, 0, 1, 0], + "azalea_leaves": [1, 0, 1, 0], + "azalea_leaves_flowered": [1, 0, 1, 0], + "sponge": [1, 1], + "glass": [1], + "lapis_ore": [1], + "deepslate_lapis_ore": [1], + "lapis_block": [1], + "dispenser": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "sandstone": [1, 1, 1, 1], + "noteblock": [1], + "bed": [2, 5, 3, 4, 2, 5, 3, 4, 3, 4, 2, 5, 3, 4, 2, 5], + "golden_rail": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "detector_rail": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sticky_piston": [1, 1, 1, 1, 1, 1], + "web": [0], + "short_grass": [0], + "fern": [0], + "deadbush": [0], + "seagrass": [0, 0, 0], + "piston": [1, 1, 1, 1, 1, 1], + "piston_arm_collision": [23, 21, 17, 13, 15, 19], + "sticky_piston_arm_collision": [23, 21, 17, 13, 15, 19], + "white_wool": [1], + "orange_wool": [1], + "magenta_wool": [1], + "light_blue_wool": [1], + "yellow_wool": [1], + "lime_wool": [1], + "pink_wool": [1], + "gray_wool": [1], + "light_gray_wool": [1], + "cyan_wool": [1], + "purple_wool": [1], + "blue_wool": [1], + "brown_wool": [1], + "green_wool": [1], + "red_wool": [1], + "black_wool": [1], + "moving_block": [0], + "yellow_flower": [0], + "torchflower": [0], + "poppy": [0], + "blue_orchid": [0], + "allium": [0], + "azure_bluet": [0], + "red_tulip": [0], + "orange_tulip": [0], + "white_tulip": [0], + "pink_tulip": [0], + "oxeye_daisy": [0], + "cornflower": [0], + "wither_rose": [0], + "lily_of_the_valley": [0], + "brown_mushroom": [0], + "red_mushroom": [0], + "gold_block": [1], + "iron_block": [1], + "brick_block": [1], + "tnt": [1, 0, 1, 0], + "bookshelf": [1], + "chiseled_bookshelf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "mossy_cobblestone": [1], + "obsidian": [1], + "torch": [0, 0, 0, 0, 0, 0], + "fire": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "soul_fire": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "mob_spawner": [1], + "oak_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "chest": [49, 52, 50, 51], + "redstone_wire": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "diamond_ore": [1], + "deepslate_diamond_ore": [1], + "diamond_block": [1], + "crafting_table": [1], + "wheat": [0, 0, 0, 0, 0, 0, 0, 0], + "farmland": [53, 53, 53, 53, 53, 53, 53, 53], + "lit_furnace": [1, 1, 1, 1], + "furnace": [1, 1, 1, 1], + "standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "spruce_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "birch_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "acacia_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "cherry_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "jungle_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "darkoak_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "mangrove_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "bamboo_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "wooden_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "ladder": [0, 0, 55, 57, 56, 54], + "rail": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "stone_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "wall_sign": [0, 0, 0, 0, 0, 0], + "spruce_wall_sign": [0, 0, 0, 0, 0, 0], + "birch_wall_sign": [0, 0, 0, 0, 0, 0], + "acacia_wall_sign": [0, 0, 0, 0, 0, 0], + "cherry_wall_sign": [0, 0, 0, 0, 0, 0], + "jungle_wall_sign": [0, 0, 0, 0, 0, 0], + "darkoak_wall_sign": [0, 0, 0, 0, 0, 0], + "mangrove_wall_sign": [0, 0, 0, 0, 0, 0], + "bamboo_wall_sign": [0, 0, 0, 0, 0, 0], + "oak_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "spruce_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "birch_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "acacia_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "cherry_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "jungle_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "dark_oak_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "crimson_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "warped_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "mangrove_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "bamboo_hanging_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "lever": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "stone_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "iron_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "wooden_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "spruce_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "birch_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "jungle_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "acacia_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "cherry_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "dark_oak_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "mangrove_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "bamboo_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "redstone_ore": [1], + "lit_redstone_ore": [1], + "deepslate_redstone_ore": [1], + "lit_deepslate_redstone_ore": [1], + "redstone_torch": [0, 0, 0, 0, 0, 0], + "unlit_redstone_torch": [0, 0, 0, 0, 0, 0], + "stone_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "snow_layer": [0, 60, 61, 62, 63, 64, 10, 65, 0, 0, 0, 0, 0, 0, 0, 0], + "ice": [1], + "snow": [1], + "cactus": [66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66], + "clay": [1], + "reeds": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "jukebox": [1], + "oak_fence": [82], + "netherrack": [1], + "soul_sand": [65], + "soul_soil": [1], + "basalt": [1, 1, 1], + "polished_basalt": [1, 1, 1], + "soul_torch": [0, 0, 0, 0, 0, 0], + "glowstone": [1], + "portal": [0, 0, 0], + "carved_pumpkin": [1, 1, 1, 1], + "lit_pumpkin": [1, 1, 1, 1], + "cake": [83, 84, 85, 86, 87, 88, 89], + "powered_repeater": [60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60], + "unpowered_repeater": [60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60], + "white_stained_glass": [1], + "orange_stained_glass": [1], + "magenta_stained_glass": [1], + "light_blue_stained_glass": [1], + "yellow_stained_glass": [1], + "lime_stained_glass": [1], + "pink_stained_glass": [1], + "gray_stained_glass": [1], + "light_gray_stained_glass": [1], + "cyan_stained_glass": [1], + "purple_stained_glass": [1], + "blue_stained_glass": [1], + "brown_stained_glass": [1], + "green_stained_glass": [1], + "red_stained_glass": [1], + "black_stained_glass": [1], + "trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "spruce_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "birch_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "jungle_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "acacia_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "cherry_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "dark_oak_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "mangrove_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "bamboo_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "stonebrick": [1, 1, 1, 1, 0], + "packed_mud": [1], + "mud_bricks": [1], + "monster_egg": [1, 1, 1, 1, 1, 1], + "brown_mushroom_block": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0], + "red_mushroom_block": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1], + "iron_bars": [107], + "chain": [109, 108, 110], + "glass_pane": [107], + "pumpkin": [0, 0, 1, 0], + "melon_block": [1], + "pumpkin_stem": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "melon_stem": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "vine": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "glow_lichen": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "stone_brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "mud_brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "mycelium": [1], + "waterlily": [111], + "nether_brick": [1], + "nether_brick_fence": [82], + "nether_brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "nether_wart": [0, 0, 0, 0], + "enchanting_table": [10], + "brewing_stand": [112, 112, 112, 112, 112, 112, 112, 112], + "cauldron": [113, 0, 0, 113, 113, 0, 113, 0, 0, 0, 0, 0, 0, 113, 0, 0, 0, 113, 113, 0, 113], + "end_portal": [0], + "end_portal_frame": [115, 115, 115, 115, 114, 114, 114, 114], + "end_stone": [1], + "dragon_egg": [116], + "redstone_lamp": [1], + "lit_redstone_lamp": [1], + "cocoa": [118, 119, 117, 120, 122, 123, 121, 124, 126, 127, 125, 128], + "sandstone_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "emerald_ore": [1], + "deepslate_emerald_ore": [1], + "ender_chest": [48, 48, 48, 48], + "tripwire_hook": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "trip_wire": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "emerald_block": [1], + "spruce_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "birch_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "jungle_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "command_block": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "beacon": [1], + "cobblestone_wall": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157], + "carrots": [0, 0, 0, 0, 0, 0, 0, 0], + "potatoes": [0, 0, 0, 0, 0, 0, 0, 0], + "wooden_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "spruce_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "birch_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "jungle_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "acacia_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "cherry_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "dark_oak_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "mangrove_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "bamboo_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "skull": [0, 166, 167, 168, 169, 170], + "anvil": [171, 172, 171, 172, 171, 172, 171, 172, 171, 172, 171, 172, 0, 0, 0, 0], + "trapped_chest": [49, 52, 50, 51], + "light_weighted_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "heavy_weighted_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "powered_comparator": [0, 0, 0, 0, 0, 0, 0, 0, 60, 60, 60, 60, 60, 60, 60, 60], + "unpowered_comparator": [60, 60, 60, 60, 60, 60, 60, 60, 0, 0, 0, 0, 0, 0, 0, 0], + "daylight_detector": [62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62], + "daylight_detector_inverted": [62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62], + "redstone_block": [1], + "quartz_ore": [1], + "hopper": [173, 0, 174, 175, 176, 177, 173, 0, 174, 175, 176, 177], + "quartz_block": [1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0], + "quartz_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "activator_rail": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "dropper": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "white_terracotta": [1], + "orange_terracotta": [1], + "magenta_terracotta": [1], + "light_blue_terracotta": [1], + "yellow_terracotta": [1], + "lime_terracotta": [1], + "pink_terracotta": [1], + "gray_terracotta": [1], + "light_gray_terracotta": [1], + "cyan_terracotta": [1], + "purple_terracotta": [1], + "blue_terracotta": [1], + "brown_terracotta": [1], + "green_terracotta": [1], + "red_terracotta": [1], + "black_terracotta": [1], + "white_stained_glass_pane": [107], + "orange_stained_glass_pane": [107], + "magenta_stained_glass_pane": [107], + "light_blue_stained_glass_pane": [107], + "yellow_stained_glass_pane": [107], + "lime_stained_glass_pane": [107], + "pink_stained_glass_pane": [107], + "gray_stained_glass_pane": [107], + "light_gray_stained_glass_pane": [107], + "cyan_stained_glass_pane": [107], + "purple_stained_glass_pane": [107], + "blue_stained_glass_pane": [107], + "brown_stained_glass_pane": [107], + "green_stained_glass_pane": [107], + "red_stained_glass_pane": [107], + "black_stained_glass_pane": [107], + "acacia_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "cherry_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "dark_oak_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "mangrove_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "bamboo_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "bamboo_mosaic_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "slime": [1], + "barrier": [1], + "light_block": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "iron_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "prismarine": [1, 1, 1], + "prismarine_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "prismarine_bricks_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "dark_prismarine_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "stone_block_slab2": [63, 63, 63, 63, 63, 63, 63, 63, 178, 178, 178, 178, 178, 178, 178, 178], + "double_stone_block_slab2": [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], + "sea_lantern": [1], + "hay_block": [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], + "white_carpet": [179], + "orange_carpet": [179], + "magenta_carpet": [179], + "light_blue_carpet": [179], + "yellow_carpet": [179], + "lime_carpet": [179], + "pink_carpet": [179], + "gray_carpet": [179], + "light_gray_carpet": [179], + "cyan_carpet": [179], + "purple_carpet": [179], + "blue_carpet": [179], + "brown_carpet": [179], + "green_carpet": [179], + "red_carpet": [179], + "black_carpet": [179], + "hardened_clay": [1], + "coal_block": [1], + "packed_ice": [1], + "sunflower": [0, 0], + "lilac": [0, 0], + "rose_bush": [0, 0], + "peony": [0, 0], + "tall_grass": [0, 0], + "large_fern": [0, 0], + "standing_banner": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "wall_banner": [0, 0, 0, 0, 0, 0], + "red_sandstone": [1, 1, 1, 1], + "red_sandstone_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "oak_double_slab": [1, 0], + "oak_slab": [63, 178], + "spruce_double_slab": [1, 0], + "spruce_slab": [63, 178], + "birch_slab": [63, 178], + "birch_double_slab": [1, 0], + "jungle_slab": [63, 178], + "jungle_double_slab": [1, 0], + "acacia_double_slab": [1, 0], + "acacia_slab": [63, 178], + "cherry_double_slab": [1, 0], + "cherry_slab": [63, 178], + "dark_oak_slab": [63, 178], + "dark_oak_double_slab": [1, 0], + "mangrove_double_slab": [1, 0], + "mangrove_slab": [63, 178], + "bamboo_double_slab": [1, 0], + "bamboo_slab": [63, 178], + "bamboo_mosaic_slab": [63, 178], + "bamboo_mosaic_double_slab": [1, 0], + "stone_block_slab4": [63, 63, 63, 63, 63, 178, 178, 178, 178, 178], + "double_stone_block_slab4": [1, 1, 1, 1, 1, 0, 0, 0, 0, 0], + "double_stone_block_slab": [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], + "smooth_stone_slab": [63, 178], + "sandstone_slab": [63, 178], + "petrified_oak_slab": [63, 178], + "cobblestone_slab": [63, 178], + "brick_slab": [63, 178], + "stone_brick_slab": [63, 178], + "mud_brick_double_slab": [1, 0], + "mud_brick_slab": [63, 178], + "nether_brick_slab": [63, 178], + "quartz_slab": [63, 178], + "smooth_stone": [1], + "spruce_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "birch_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "jungle_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "acacia_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "cherry_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "dark_oak_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "mangrove_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "bamboo_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "spruce_fence": [82], + "birch_fence": [82], + "jungle_fence": [82], + "acacia_fence": [82], + "cherry_fence": [82], + "dark_oak_fence": [82], + "mangrove_fence": [82], + "bamboo_fence": [82], + "spruce_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "birch_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "jungle_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "acacia_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "cherry_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "dark_oak_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "mangrove_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "bamboo_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "end_rod": [182, 182, 180, 180, 181, 181], + "chorus_plant": [246], + "chorus_flower": [1, 1, 1, 1, 1, 1], + "purpur_block": [1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0], + "purpur_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "end_bricks": [1], + "torchflower_crop": [0, 0, 0, 0, 0, 0, 0, 0], + "pitcher_crop": [247, 247, 248, 0, 0, 0, 248, 0, 0, 0, 248, 0, 0, 0, 248, 0], + "pitcher_plant": [0, 0], + "beetroot": [0, 0, 0, 0, 0, 0, 0, 0], + "grass_path": [53], + "end_gateway": [0], + "repeating_command_block": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "chain_command_block": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "frosted_ice": [1, 1, 1, 1], + "magma": [1], + "nether_wart_block": [1], + "red_nether_brick": [1], + "bone_block": [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], + "structure_void": [0, 0], + "observer": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "undyed_shulker_box": [1], + "white_shulker_box": [1], + "orange_shulker_box": [1], + "magenta_shulker_box": [1], + "light_blue_shulker_box": [1], + "yellow_shulker_box": [1], + "lime_shulker_box": [1], + "pink_shulker_box": [1], + "gray_shulker_box": [1], + "light_gray_shulker_box": [1], + "cyan_shulker_box": [1], + "purple_shulker_box": [1], + "blue_shulker_box": [1], + "brown_shulker_box": [1], + "green_shulker_box": [1], + "red_shulker_box": [1], + "black_shulker_box": [1], + "white_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "orange_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "magenta_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "light_blue_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "yellow_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "lime_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "pink_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "gray_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "silver_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "cyan_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "purple_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "blue_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "brown_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "green_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "red_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "black_glazed_terracotta": [0, 0, 1, 1, 1, 1], + "white_concrete": [1], + "orange_concrete": [1], + "magenta_concrete": [1], + "light_blue_concrete": [1], + "yellow_concrete": [1], + "lime_concrete": [1], + "pink_concrete": [1], + "gray_concrete": [1], + "light_gray_concrete": [1], + "cyan_concrete": [1], + "purple_concrete": [1], + "blue_concrete": [1], + "brown_concrete": [1], + "green_concrete": [1], + "red_concrete": [1], + "black_concrete": [1], + "white_concrete_powder": [1], + "orange_concrete_powder": [1], + "magenta_concrete_powder": [1], + "light_blue_concrete_powder": [1], + "yellow_concrete_powder": [1], + "lime_concrete_powder": [1], + "pink_concrete_powder": [1], + "gray_concrete_powder": [1], + "light_gray_concrete_powder": [1], + "cyan_concrete_powder": [1], + "purple_concrete_powder": [1], + "blue_concrete_powder": [1], + "brown_concrete_powder": [1], + "green_concrete_powder": [1], + "red_concrete_powder": [1], + "black_concrete_powder": [1], + "kelp": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "dried_kelp_block": [1], + "turtle_egg": [249, 250, 250, 250, 249, 250, 250, 250, 249, 250, 250, 250], + "sniffer_egg": [251, 251, 251], + "dead_tube_coral_block": [1], + "dead_brain_coral_block": [1], + "dead_bubble_coral_block": [1], + "dead_fire_coral_block": [1], + "dead_horn_coral_block": [1], + "tube_coral_block": [1], + "brain_coral_block": [1], + "bubble_coral_block": [1], + "fire_coral_block": [1], + "horn_coral_block": [1], + "dead_tube_coral": [0], + "dead_brain_coral": [0], + "dead_bubble_coral": [0], + "dead_fire_coral": [0], + "dead_horn_coral": [0], + "tube_coral": [0], + "brain_coral": [0], + "bubble_coral": [0], + "fire_coral": [0], + "horn_coral": [0], + "dead_tube_coral_fan": [0, 0], + "dead_brain_coral_fan": [0, 0], + "dead_bubble_coral_fan": [0, 0], + "dead_fire_coral_fan": [0, 0], + "dead_horn_coral_fan": [0, 0], + "tube_coral_fan": [0, 0], + "brain_coral_fan": [0, 0], + "bubble_coral_fan": [0, 0], + "fire_coral_fan": [0, 0], + "horn_coral_fan": [0, 0], + "coral_fan_hang": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "coral_fan_hang2": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "coral_fan_hang3": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sea_pickle": [252, 253, 254, 255, 252, 253, 254, 255], + "blue_ice": [1], + "conduit": [256], + "bamboo_sapling": [0, 0], + "bamboo": [257, 257, 257, 257, 257, 257, 0, 0, 0, 0, 0, 0], + "bubble_column": [0, 0], + "polished_granite_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "smooth_red_sandstone_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "mossy_stone_brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "polished_diorite_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "mossy_cobblestone_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "end_brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "normal_stone_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "smooth_sandstone_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "smooth_quartz_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "granite_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "andesite_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "red_nether_brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "polished_andesite_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "diorite_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "stone_block_slab3": [63, 63, 63, 63, 63, 63, 63, 63, 178, 178, 178, 178, 178, 178, 178, 178], + "double_stone_block_slab3": [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], + "mud_brick_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "scaffolding": [258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258], + "loom": [1, 1, 1, 1], + "barrel": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "smoker": [1, 1, 1, 1], + "lit_smoker": [1, 1, 1, 1], + "lit_blast_furnace": [1, 1, 1, 1], + "blast_furnace": [1, 1, 1, 1], + "cartography_table": [1], + "fletching_table": [1], + "grindstone": [259, 260, 259, 260, 265, 266, 265, 266, 262, 263, 261, 264, 0, 0, 0, 0], + "lectern": [267, 267, 267, 267, 267, 267, 267, 267], + "smithing_table": [1], + "stonecutter_block": [268, 268, 268, 268], + "bell": [269, 270, 269, 270, 271, 271, 271, 271, 272, 275, 273, 274, 276, 277, 276, 277, 269, 270, 269, 270, 271, 271, 271, 271, 272, 275, 273, 274, 276, 277, 276, 277], + "lantern": [279, 278], + "soul_lantern": [279, 278], + "campfire": [280, 280, 280, 280, 280, 280, 280, 280], + "soul_campfire": [280, 280, 280, 280, 280, 280, 280, 280], + "sweet_berry_bush": [0, 0, 0, 0, 0, 0, 0, 0], + "warped_stem": [1, 1, 1], + "stripped_warped_stem": [1, 1, 1], + "warped_hyphae": [1, 1, 1], + "stripped_warped_hyphae": [1, 1, 1], + "warped_nylium": [1], + "warped_fungus": [0], + "warped_wart_block": [1], + "warped_roots": [0], + "nether_sprouts": [0], + "crimson_stem": [1, 1, 1], + "stripped_crimson_stem": [1, 1, 1], + "crimson_hyphae": [1, 1, 1], + "stripped_crimson_hyphae": [1, 1, 1], + "crimson_nylium": [1], + "crimson_fungus": [0], + "shroomlight": [1], + "weeping_vines": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "twisting_vines": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "crimson_roots": [0], + "crimson_planks": [1], + "warped_planks": [1], + "crimson_double_slab": [1, 0], + "crimson_slab": [63, 178], + "warped_double_slab": [1, 0], + "warped_slab": [63, 178], + "crimson_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "warped_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "crimson_fence": [82], + "warped_fence": [82], + "crimson_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "warped_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "crimson_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "warped_fence_gate": [73, 76, 73, 76, 0, 0, 0, 0, 73, 76, 73, 76, 0, 0, 0, 0], + "crimson_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "warped_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "crimson_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "warped_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "crimson_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "warped_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "crimson_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "warped_standing_sign": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "crimson_wall_sign": [0, 0, 0, 0, 0, 0], + "warped_wall_sign": [0, 0, 0, 0, 0, 0], + "structure_block": [1, 1, 1, 1, 0, 0], + "jigsaw": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "composter": [281, 281, 281, 281, 281, 281, 281, 281, 281], + "target": [1], + "bee_nest": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "beehive": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "honey_block": [66], + "honeycomb_block": [1], + "netherite_block": [1], + "ancient_debris": [1], + "crying_obsidian": [1], + "respawn_anchor": [1, 1, 1, 1, 1], + "lodestone": [1], + "blackstone": [1], + "blackstone_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "blackstone_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "blackstone_double_slab": [1, 0], + "blackstone_slab": [63, 178], + "polished_blackstone": [1], + "polished_blackstone_bricks": [1], + "cracked_polished_blackstone_bricks": [1], + "chiseled_polished_blackstone": [1], + "polished_blackstone_brick_double_slab": [1, 0], + "polished_blackstone_brick_slab": [63, 178], + "polished_blackstone_brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "polished_blackstone_brick_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "gilded_blackstone": [1], + "polished_blackstone_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "polished_blackstone_double_slab": [1, 0], + "polished_blackstone_slab": [63, 178], + "polished_blackstone_pressure_plate": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "polished_blackstone_button": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "polished_blackstone_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "chiseled_nether_bricks": [1], + "cracked_nether_bricks": [1], + "quartz_bricks": [1], + "candle": [282, 283, 284, 285, 282, 283, 284, 285], + "white_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "orange_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "magenta_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "light_blue_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "yellow_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "lime_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "pink_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "gray_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "light_gray_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "cyan_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "purple_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "blue_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "brown_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "green_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "red_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "black_candle": [282, 283, 284, 285, 282, 283, 284, 285], + "candle_cake": [286, 286], + "white_candle_cake": [286, 286], + "orange_candle_cake": [286, 286], + "magenta_candle_cake": [286, 286], + "light_blue_candle_cake": [286, 286], + "yellow_candle_cake": [286, 286], + "lime_candle_cake": [286, 286], + "pink_candle_cake": [286, 286], + "gray_candle_cake": [286, 286], + "light_gray_candle_cake": [286, 286], + "cyan_candle_cake": [286, 286], + "purple_candle_cake": [286, 286], + "blue_candle_cake": [286, 286], + "brown_candle_cake": [286, 286], + "green_candle_cake": [286, 286], + "red_candle_cake": [286, 286], + "black_candle_cake": [286, 286], + "amethyst_block": [1], + "budding_amethyst": [1], + "amethyst_cluster": [292, 291, 287, 289, 290, 288], + "large_amethyst_bud": [298, 297, 293, 295, 296, 294], + "medium_amethyst_bud": [304, 303, 299, 301, 302, 300], + "small_amethyst_bud": [310, 309, 305, 307, 308, 306], + "tuff": [1], + "tuff_slab": [63, 178], + "tuff_double_slab": [1, 0], + "tuff_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "tuff_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "polished_tuff": [1], + "polished_tuff_slab": [63, 178], + "polished_tuff_double_slab": [1, 0], + "polished_tuff_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "polished_tuff_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "chiseled_tuff": [1], + "tuff_bricks": [1], + "tuff_brick_slab": [63, 178], + "tuff_brick_double_slab": [1, 0], + "tuff_brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "tuff_brick_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "chiseled_tuff_bricks": [1], + "calcite": [1], + "tinted_glass": [1], + "powder_snow": [0], + "sculk_sensor": [63, 63, 63], + "calibrated_sculk_sensor": [63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63], + "sculk": [1], + "sculk_vein": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sculk_catalyst": [1, 1], + "sculk_shrieker": [63, 63, 63, 63], + "copper_block": [1], + "exposed_copper": [1], + "weathered_copper": [1], + "oxidized_copper": [1], + "copper_ore": [1], + "deepslate_copper_ore": [1], + "oxidized_cut_copper": [1], + "weathered_cut_copper": [1], + "exposed_cut_copper": [1], + "cut_copper": [1], + "oxidized_chiseled_copper": [1], + "weathered_chiseled_copper": [1], + "exposed_chiseled_copper": [1], + "chiseled_copper": [1], + "waxed_oxidized_chiseled_copper": [1], + "waxed_weathered_chiseled_copper": [1], + "waxed_exposed_chiseled_copper": [1], + "waxed_chiseled_copper": [1], + "oxidized_cut_copper_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "weathered_cut_copper_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "exposed_cut_copper_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "cut_copper_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "oxidized_double_cut_copper_slab": [1, 0], + "oxidized_cut_copper_slab": [63, 178], + "weathered_cut_copper_slab": [63, 178], + "weathered_double_cut_copper_slab": [1, 0], + "exposed_double_cut_copper_slab": [1, 0], + "exposed_cut_copper_slab": [63, 178], + "double_cut_copper_slab": [1, 0], + "cut_copper_slab": [63, 178], + "waxed_copper": [1], + "waxed_weathered_copper": [1], + "waxed_exposed_copper": [1], + "waxed_oxidized_copper": [1], + "waxed_oxidized_cut_copper": [1], + "waxed_weathered_cut_copper": [1], + "waxed_exposed_cut_copper": [1], + "waxed_cut_copper": [1], + "waxed_oxidized_cut_copper_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "waxed_weathered_cut_copper_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "waxed_exposed_cut_copper_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "waxed_cut_copper_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "waxed_oxidized_cut_copper_slab": [63, 178], + "waxed_oxidized_double_cut_copper_slab": [1, 0], + "waxed_weathered_double_cut_copper_slab": [1, 0], + "waxed_weathered_cut_copper_slab": [63, 178], + "waxed_exposed_cut_copper_slab": [63, 178], + "waxed_exposed_double_cut_copper_slab": [1, 0], + "waxed_double_cut_copper_slab": [1, 0], + "waxed_cut_copper_slab": [63, 178], + "copper_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "exposed_copper_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "oxidized_copper_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "weathered_copper_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "waxed_copper_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "waxed_exposed_copper_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "waxed_oxidized_copper_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "waxed_weathered_copper_door": [54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 57, 56, 55, 54, 54, 57, 56, 55, 55, 54, 57, 56, 54, 57, 56, 55, 55, 54, 57, 56], + "copper_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "exposed_copper_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "oxidized_copper_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "weathered_copper_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "waxed_copper_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "waxed_exposed_copper_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "waxed_oxidized_copper_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "waxed_weathered_copper_trapdoor": [91, 91, 91, 91, 90, 90, 90, 90, 54, 56, 57, 55, 54, 56, 57, 55], + "copper_grate": [1], + "exposed_copper_grate": [1], + "weathered_copper_grate": [1], + "oxidized_copper_grate": [1], + "waxed_copper_grate": [1], + "waxed_exposed_copper_grate": [1], + "waxed_weathered_copper_grate": [1], + "waxed_oxidized_copper_grate": [1], + "copper_bulb": [1, 1, 1, 1], + "exposed_copper_bulb": [1, 1, 1, 1], + "raw_iron_block": [1], + "hard_blue_stained_glass_pane": [0], + "cobbled_deepslate_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "trial_spawner": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "hard_light_gray_stained_glass": [0], + "info_update2": [0], + "polished_deepslate": [1], + "polished_deepslate_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "crafter": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "element_84": [0], + "element_85": [0], + "element_86": [0], + "element_87": [0], + "element_80": [0], + "element_81": [0], + "element_82": [0], + "element_83": [0], + "element_88": [0], + "element_89": [0], + "element_97": [0], + "element_96": [0], + "element_95": [0], + "element_94": [0], + "element_93": [0], + "element_92": [0], + "element_91": [0], + "element_90": [0], + "element_99": [0], + "element_98": [0], + "element_68": [0], + "element_69": [0], + "element_62": [0], + "element_63": [0], + "element_60": [0], + "element_61": [0], + "element_66": [0], + "element_67": [0], + "element_64": [0], + "element_65": [0], + "element_79": [0], + "element_78": [0], + "element_75": [0], + "element_74": [0], + "element_77": [0], + "element_76": [0], + "element_71": [0], + "element_70": [0], + "element_73": [0], + "element_72": [0], + "element_40": [0], + "element_41": [0], + "element_42": [0], + "element_43": [0], + "element_44": [0], + "element_45": [0], + "element_46": [0], + "element_47": [0], + "element_48": [0], + "element_49": [0], + "element_53": [0], + "element_52": [0], + "element_51": [0], + "element_50": [0], + "element_57": [0], + "element_56": [0], + "element_55": [0], + "element_54": [0], + "element_59": [0], + "element_58": [0], + "element_26": [0], + "element_27": [0], + "element_24": [0], + "element_25": [0], + "element_22": [0], + "element_23": [0], + "element_20": [0], + "element_21": [0], + "element_28": [0], + "element_29": [0], + "element_39": [0], + "element_38": [0], + "element_31": [0], + "element_30": [0], + "element_33": [0], + "element_32": [0], + "element_35": [0], + "element_34": [0], + "element_37": [0], + "element_36": [0], + "element_19": [0], + "element_18": [0], + "element_17": [0], + "element_16": [0], + "element_15": [0], + "element_14": [0], + "element_13": [0], + "element_12": [0], + "element_11": [0], + "element_10": [0], + "weathered_copper_bulb": [1, 1, 1, 1], + "hard_pink_stained_glass_pane": [0], + "colored_torch_rg": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "colored_torch_bp": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "cave_vines_head_with_berries": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "chemical_heat": [0], + "spore_blossom": [0], + "cobbled_deepslate_slab": [63, 178], + "deepslate_brick_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "netherreactor": [0], + "pointed_dripstone": [312, 314, 315, 316, 311, 313, 314, 315, 316, 311], + "heavy_core": [161], + "chemistry_table": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "camera": [0], + "element_8": [0], + "element_9": [0], + "element_6": [0], + "element_7": [0], + "element_4": [0], + "element_5": [0], + "element_2": [0], + "element_3": [0], + "element_0": [0], + "element_1": [0], + "hard_cyan_stained_glass_pane": [0], + "hard_white_stained_glass_pane": [0], + "allow": [0], + "hard_purple_stained_glass_pane": [0], + "hard_red_stained_glass_pane": [0], + "hard_red_stained_glass": [0], + "azalea": [317], + "moss_block": [1], + "mud": [65], + "cobbled_deepslate": [1], + "hard_green_stained_glass": [0], + "hard_gray_stained_glass_pane": [0], + "verdant_froglight": [1, 1, 1], + "pearlescent_froglight": [1, 1, 1], + "decorated_pot": [116, 116, 116, 116], + "hard_lime_stained_glass": [0], + "hard_magenta_stained_glass_pane": [0], + "waxed_oxidized_copper_bulb": [1, 1, 1, 1], + "hard_orange_stained_glass": [0], + "vault": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "hard_black_stained_glass": [0], + "waxed_weathered_copper_bulb": [1, 1, 1, 1], + "cave_vines_body_with_berries": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "big_dripleaf": [0, 0, 0, 0, 318, 318, 319, 0, 0, 0, 0, 0, 318, 318, 319, 0, 0, 0, 0, 0, 318, 318, 319, 0, 0, 0, 0, 0, 318, 318, 319, 0], + "cobbled_deepslate_double_slab": [1, 0], + "reinforced_deepslate": [1], + "deny": [0], + "element_118": [0], + "element_114": [0], + "element_115": [0], + "element_116": [0], + "element_117": [0], + "element_110": [0], + "element_111": [0], + "element_112": [0], + "element_113": [0], + "element_109": [0], + "element_108": [0], + "element_107": [0], + "element_106": [0], + "element_105": [0], + "element_104": [0], + "element_103": [0], + "element_102": [0], + "element_101": [0], + "element_100": [0], + "flowering_azalea": [317], + "moss_carpet": [179], + "dirt_with_roots": [1], + "deepslate": [1, 1, 1], + "polished_deepslate_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "polished_deepslate_slab": [63, 178], + "polished_deepslate_double_slab": [1, 0], + "deepslate_tile_double_slab": [1, 0], + "deepslate_bricks": [1], + "hard_light_blue_stained_glass_pane": [0], + "deepslate_brick_slab": [63, 178], + "chiseled_deepslate": [1], + "cracked_deepslate_bricks": [1], + "raw_copper_block": [1], + "border_block": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "cave_vines": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "deepslate_tile_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "hard_glass": [0], + "pink_petals": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "deepslate_tile_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "infested_deepslate": [1, 1, 1], + "unknown": [0], + "reserved6": [0], + "hard_yellow_stained_glass": [0], + "hard_light_gray_stained_glass_pane": [0], + "deepslate_tiles": [1], + "hard_lime_stained_glass_pane": [0], + "frog_spawn": [0], + "hard_purple_stained_glass": [0], + "hard_blue_stained_glass": [0], + "hard_cyan_stained_glass": [0], + "small_dripleaf_block": [0, 0, 0, 0, 0, 0, 0, 0], + "deepslate_tile_slab": [63, 178], + "client_request_placeholder_block": [0], + "frame": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "hard_yellow_stained_glass_pane": [0], + "waxed_exposed_copper_bulb": [1, 1, 1, 1], + "cracked_deepslate_tiles": [1], + "hard_magenta_stained_glass": [0], + "hard_white_stained_glass": [0], + "glowingobsidian": [0], + "deepslate_brick_double_slab": [1, 0], + "underwater_torch": [0, 0, 0, 0, 0, 0], + "lightning_rod": [182, 182, 180, 180, 181, 181], + "hard_light_blue_stained_glass": [0], + "hard_brown_stained_glass_pane": [0], + "oxidized_copper_bulb": [1, 1, 1, 1], + "deepslate_brick_wall": [0, 129, 138, 136, 138, 136, 146, 144, 154, 152, 154, 152, 146, 144, 154, 152, 154, 152, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 134, 132, 142, 140, 142, 140, 150, 148, 158, 156, 158, 156, 150, 148, 158, 156, 158, 156, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 131, 130, 139, 137, 139, 137, 147, 145, 155, 153, 155, 153, 147, 145, 155, 153, 155, 153, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157, 135, 133, 143, 141, 143, 141, 151, 149, 159, 157, 159, 157, 151, 149, 159, 157, 159, 157], + "smooth_basalt": [1], + "invisible_bedrock": [0], + "stonecutter": [0], + "hard_glass_pane": [0], + "waxed_copper_bulb": [1, 1, 1, 1], + "dripstone_block": [1], + "raw_gold_block": [1], + "flower_pot": [160, 0], + "ochre_froglight": [1, 1, 1], + "hard_gray_stained_glass": [0], + "info_update": [0], + "hard_black_stained_glass_pane": [0], + "hard_brown_stained_glass": [0], + "hard_orange_stained_glass_pane": [0], + "hanging_roots": [0], + "glow_frame": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "cobbled_deepslate_stairs": [42, 32, 43, 33, 37, 27, 38, 28], + "hard_green_stained_glass_pane": [0], + "hard_pink_stained_glass": [0] + }, + "shapes": { + "0": [], + "1": [[0.5, 0.5, 0.5, 1, 1, 1]], + "2": [[0.09375, 0.28125, 0.09375, 0.1875, 0.5625, 0.1875], [0.90625, 0.28125, 0.09375, 0.1875, 0.5625, 0.1875], [0.5, 0.375, 0.59375, 1, 0.375, 0.8125], [0.5, 0.375, 0.09375, 0.625, 0.375, 0.1875]], + "3": [[0.09375, 0.28125, 0.90625, 0.1875, 0.5625, 0.1875], [0.90625, 0.28125, 0.90625, 0.1875, 0.5625, 0.1875], [0.5, 0.375, 0.40625, 1, 0.375, 0.8125], [0.5, 0.375, 0.90625, 0.625, 0.375, 0.1875]], + "4": [[0.09375, 0.28125, 0.09375, 0.1875, 0.5625, 0.1875], [0.09375, 0.28125, 0.90625, 0.1875, 0.5625, 0.1875], [0.5, 0.375, 0.5, 1, 0.375, 0.625], [0.59375, 0.375, 0.09375, 0.8125, 0.375, 0.1875], [0.59375, 0.375, 0.90625, 0.8125, 0.375, 0.1875]], + "5": [[0.90625, 0.28125, 0.09375, 0.1875, 0.5625, 0.1875], [0.90625, 0.28125, 0.90625, 0.1875, 0.5625, 0.1875], [0.40625, 0.375, 0.5, 0.8125, 0.375, 1], [0.90625, 0.375, 0.5, 0.1875, 0.375, 0.625]], + "6": [[0.5, 0.5, 0.625, 1, 1, 0.75]], + "7": [[0.375, 0.5, 0.5, 0.75, 1, 1]], + "8": [[0.5, 0.5, 0.375, 1, 1, 0.75]], + "9": [[0.625, 0.5, 0.5, 0.75, 1, 1]], + "10": [[0.5, 0.375, 0.5, 1, 0.75, 1]], + "11": [[0.5, 0.625, 0.5, 1, 0.75, 1]], + "12": [[0.5, 0.5, 0.125, 1, 1, 0.25], [0.5, 0.5, 0.625, 0.25, 0.25, 0.75]], + "13": [[0.5, 0.5, 0.125, 1, 1, 0.25], [0.5, 0.5, 0.75, 0.25, 0.25, 1]], + "14": [[0.875, 0.5, 0.5, 0.25, 1, 1], [0.375, 0.5, 0.5, 0.75, 0.25, 0.25]], + "15": [[0.875, 0.5, 0.5, 0.25, 1, 1], [0.25, 0.5, 0.5, 1, 0.25, 0.25]], + "16": [[0.5, 0.5, 0.875, 1, 1, 0.25], [0.5, 0.5, 0.375, 0.25, 0.25, 0.75]], + "17": [[0.5, 0.5, 0.875, 1, 1, 0.25], [0.5, 0.5, 0.25, 0.25, 0.25, 1]], + "18": [[0.125, 0.5, 0.5, 0.25, 1, 1], [0.625, 0.5, 0.5, 0.75, 0.25, 0.25]], + "19": [[0.125, 0.5, 0.5, 0.25, 1, 1], [0.75, 0.5, 0.5, 1, 0.25, 0.25]], + "20": [[0.5, 0.5, 0.5, 0.25, 1, 0.25], [0.1875, 0.875, 0.5, 0.375, 0.25, 1], [0.6875, 0.875, 0.1875, 0.625, 0.25, 0.375], [0.6875, 0.875, 0.8125, 0.625, 0.25, 0.375], [0.8125, 0.875, 0.5, 0.375, 0.25, 0.25]], + "21": [[0.5, 0.375, 0.5, 0.25, 1.25, 0.25], [0.1875, 0.875, 0.5, 0.375, 0.25, 1], [0.6875, 0.875, 0.1875, 0.625, 0.25, 0.375], [0.6875, 0.875, 0.8125, 0.625, 0.25, 0.375], [0.8125, 0.875, 0.5, 0.375, 0.25, 0.25]], + "22": [[0.5, 0.125, 0.5, 1, 0.25, 1], [0.5, 0.625, 0.5, 0.25, 0.75, 0.25]], + "23": [[0.5, 0.125, 0.5, 1, 0.25, 1], [0.5, 0.75, 0.5, 0.25, 1, 0.25]], + "24": [[0.5, 0.5, 0.25, 1, 1, 0.5], [0.5, 0.75, 0.75, 1, 0.5, 0.5]], + "25": [[0.25, 0.5, 0.5, 0.5, 1, 1], [0.75, 0.5, 0.25, 0.5, 1, 0.5], [0.75, 0.75, 0.75, 0.5, 0.5, 0.5]], + "26": [[0.5, 0.5, 0.25, 1, 1, 0.5], [0.75, 0.5, 0.75, 0.5, 1, 0.5], [0.25, 0.75, 0.75, 0.5, 0.5, 0.5]], + "27": [[0.25, 0.5, 0.25, 0.5, 1, 0.5], [0.5, 0.75, 0.75, 1, 0.5, 0.5], [0.75, 0.75, 0.25, 0.5, 0.5, 0.5]], + "28": [[0.75, 0.5, 0.25, 0.5, 1, 0.5], [0.25, 0.75, 0.5, 0.5, 0.5, 1], [0.75, 0.75, 0.75, 0.5, 0.5, 0.5]], + "29": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.5, 0.75, 0.25, 1, 0.5, 0.5]], + "30": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.25, 0.75, 0.5, 0.5, 0.5, 1], [0.75, 0.75, 0.25, 0.5, 0.5, 0.5]], + "31": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.5, 0.75, 0.25, 1, 0.5, 0.5], [0.75, 0.75, 0.75, 0.5, 0.5, 0.5]], + "32": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.25, 0.75, 0.25, 0.5, 0.5, 0.5]], + "33": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.75, 0.75, 0.25, 0.5, 0.5, 0.5]], + "34": [[0.5, 0.5, 0.75, 1, 1, 0.5], [0.5, 0.75, 0.25, 1, 0.5, 0.5]], + "35": [[0.5, 0.5, 0.75, 1, 1, 0.5], [0.75, 0.5, 0.25, 0.5, 1, 0.5], [0.25, 0.75, 0.25, 0.5, 0.5, 0.5]], + "36": [[0.25, 0.5, 0.5, 0.5, 1, 1], [0.75, 0.5, 0.75, 0.5, 1, 0.5], [0.75, 0.75, 0.25, 0.5, 0.5, 0.5]], + "37": [[0.75, 0.5, 0.75, 0.5, 1, 0.5], [0.25, 0.75, 0.5, 0.5, 0.5, 1], [0.75, 0.75, 0.25, 0.5, 0.5, 0.5]], + "38": [[0.25, 0.5, 0.75, 0.5, 1, 0.5], [0.5, 0.75, 0.25, 1, 0.5, 0.5], [0.75, 0.75, 0.75, 0.5, 0.5, 0.5]], + "39": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.5, 0.75, 0.75, 1, 0.5, 0.5]], + "40": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.5, 0.75, 0.75, 1, 0.5, 0.5], [0.75, 0.75, 0.25, 0.5, 0.5, 0.5]], + "41": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.25, 0.75, 0.5, 0.5, 0.5, 1], [0.75, 0.75, 0.75, 0.5, 0.5, 0.5]], + "42": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.75, 0.75, 0.75, 0.5, 0.5, 0.5]], + "43": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.25, 0.75, 0.75, 0.5, 0.5, 0.5]], + "44": [[0.25, 0.5, 0.5, 0.5, 1, 1], [0.75, 0.75, 0.5, 0.5, 0.5, 1]], + "45": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.25, 0.75, 0.5, 0.5, 0.5, 1]], + "46": [[0.75, 0.5, 0.5, 0.5, 1, 1], [0.25, 0.75, 0.5, 0.5, 0.5, 1]], + "47": [[0.5, 0.25, 0.5, 1, 0.5, 1], [0.75, 0.75, 0.5, 0.5, 0.5, 1]], + "48": [[0.5, 0.4375, 0.5, 0.875, 0.875, 0.875]], + "49": [[0.53125, 0.4375, 0.5, 0.9375, 0.875, 0.875]], + "50": [[0.46875, 0.4375, 0.5, 0.9375, 0.875, 0.875]], + "51": [[0.5, 0.4375, 0.46875, 0.875, 0.875, 0.9375]], + "52": [[0.5, 0.4375, 0.53125, 0.875, 0.875, 0.9375]], + "53": [[0.5, 0.46875, 0.5, 1, 0.9375, 1]], + "54": [[0.09375, 0.5, 0.5, 0.1875, 1, 1]], + "55": [[0.5, 0.5, 0.90625, 1, 1, 0.1875]], + "56": [[0.90625, 0.5, 0.5, 0.1875, 1, 1]], + "57": [[0.5, 0.5, 0.09375, 1, 1, 0.1875]], + "58": [[0.5, 0.9375, 0.5, 1, 0.125, 0.25]], + "59": [[0.5, 0.9375, 0.5, 0.25, 0.125, 1]], + "60": [[0.5, 0.0625, 0.5, 1, 0.125, 1]], + "61": [[0.5, 0.125, 0.5, 1, 0.25, 1]], + "62": [[0.5, 0.1875, 0.5, 1, 0.375, 1]], + "63": [[0.5, 0.25, 0.5, 1, 0.5, 1]], + "64": [[0.5, 0.3125, 0.5, 1, 0.625, 1]], + "65": [[0.5, 0.4375, 0.5, 1, 0.875, 1]], + "66": [[0.5, 0.46875, 0.5, 0.875, 0.9375, 0.875]], + "67": [[0.5, 0.75, 0.5, 1, 1.5, 0.25], [0.5, 0.75, 0.1875, 0.25, 1.5, 0.375], [0.5, 0.75, 0.8125, 0.25, 1.5, 0.375]], + "68": [[0.5, 0.75, 0.5, 0.25, 1.5, 1], [0.8125, 0.75, 0.5, 0.375, 1.5, 0.25]], + "69": [[0.5, 0.75, 0.5, 1, 1.5, 0.25], [0.5, 0.75, 0.1875, 0.25, 1.5, 0.375]], + "70": [[0.5, 0.75, 0.3125, 0.25, 1.5, 0.625], [0.8125, 0.75, 0.5, 0.375, 1.5, 0.25]], + "71": [[0.5, 0.75, 0.5, 1, 1.5, 0.25], [0.5, 0.75, 0.8125, 0.25, 1.5, 0.375]], + "72": [[0.5, 0.75, 0.6875, 0.25, 1.5, 0.625], [0.8125, 0.75, 0.5, 0.375, 1.5, 0.25]], + "73": [[0.5, 0.75, 0.5, 1, 1.5, 0.25]], + "74": [[0.6875, 0.75, 0.5, 0.625, 1.5, 0.25]], + "75": [[0.3125, 0.75, 0.5, 0.625, 1.5, 0.25], [0.5, 0.75, 0.1875, 0.25, 1.5, 0.375], [0.5, 0.75, 0.8125, 0.25, 1.5, 0.375]], + "76": [[0.5, 0.75, 0.5, 0.25, 1.5, 1]], + "77": [[0.3125, 0.75, 0.5, 0.625, 1.5, 0.25], [0.5, 0.75, 0.1875, 0.25, 1.5, 0.375]], + "78": [[0.5, 0.75, 0.3125, 0.25, 1.5, 0.625]], + "79": [[0.3125, 0.75, 0.5, 0.625, 1.5, 0.25], [0.5, 0.75, 0.8125, 0.25, 1.5, 0.375]], + "80": [[0.5, 0.75, 0.6875, 0.25, 1.5, 0.625]], + "81": [[0.3125, 0.75, 0.5, 0.625, 1.5, 0.25]], + "82": [[0.5, 0.75, 0.5, 0.25, 1.5, 0.25]], + "83": [[0.5, 0.25, 0.5, 0.875, 0.5, 0.875]], + "84": [[0.5625, 0.25, 0.5, 0.75, 0.5, 0.875]], + "85": [[0.625, 0.25, 0.5, 0.625, 0.5, 0.875]], + "86": [[0.6875, 0.25, 0.5, 0.5, 0.5, 0.875]], + "87": [[0.75, 0.25, 0.5, 0.375, 0.5, 0.875]], + "88": [[0.8125, 0.25, 0.5, 0.25, 0.5, 0.875]], + "89": [[0.875, 0.25, 0.5, 0.125, 0.5, 0.875]], + "90": [[0.5, 0.90625, 0.5, 1, 0.1875, 1]], + "91": [[0.5, 0.09375, 0.5, 1, 0.1875, 1]], + "92": [[0.5, 0.5, 0.5, 1, 1, 0.125], [0.5, 0.5, 0.21875, 0.125, 1, 0.4375], [0.5, 0.5, 0.78125, 0.125, 1, 0.4375]], + "93": [[0.5, 0.5, 0.5, 0.125, 1, 1], [0.78125, 0.5, 0.5, 0.4375, 1, 0.125]], + "94": [[0.5, 0.5, 0.5, 1, 1, 0.125], [0.5, 0.5, 0.21875, 0.125, 1, 0.4375]], + "95": [[0.5, 0.5, 0.28125, 0.125, 1, 0.5625], [0.78125, 0.5, 0.5, 0.4375, 1, 0.125]], + "96": [[0.5, 0.5, 0.5, 1, 1, 0.125], [0.5, 0.5, 0.78125, 0.125, 1, 0.4375]], + "97": [[0.5, 0.5, 0.71875, 0.125, 1, 0.5625], [0.78125, 0.5, 0.5, 0.4375, 1, 0.125]], + "98": [[0.5, 0.5, 0.5, 1, 1, 0.125]], + "99": [[0.71875, 0.5, 0.5, 0.5625, 1, 0.125]], + "100": [[0.28125, 0.5, 0.5, 0.5625, 1, 0.125], [0.5, 0.5, 0.21875, 0.125, 1, 0.4375], [0.5, 0.5, 0.78125, 0.125, 1, 0.4375]], + "101": [[0.5, 0.5, 0.5, 0.125, 1, 1]], + "102": [[0.28125, 0.5, 0.5, 0.5625, 1, 0.125], [0.5, 0.5, 0.21875, 0.125, 1, 0.4375]], + "103": [[0.5, 0.5, 0.28125, 0.125, 1, 0.5625]], + "104": [[0.28125, 0.5, 0.5, 0.5625, 1, 0.125], [0.5, 0.5, 0.78125, 0.125, 1, 0.4375]], + "105": [[0.5, 0.5, 0.71875, 0.125, 1, 0.5625]], + "106": [[0.28125, 0.5, 0.5, 0.5625, 1, 0.125]], + "107": [[0.5, 0.5, 0.5, 0.125, 1, 0.125]], + "108": [[0.5, 0.5, 0.5, 1, 0.1875, 0.1875]], + "109": [[0.5, 0.5, 0.5, 0.1875, 1, 0.1875]], + "110": [[0.5, 0.5, 0.5, 0.1875, 0.1875, 1]], + "111": [[0.5, 0.046875, 0.5, 0.875, 0.09375, 0.875]], + "112": [[0.5, 0.0625, 0.5, 0.875, 0.125, 0.875], [0.5, 0.5, 0.5, 0.125, 0.75, 0.125]], + "113": [[0.0625, 0.5, 0.125, 0.125, 1, 0.25], [0.0625, 0.5, 0.875, 0.125, 1, 0.25], [0.1875, 0.5, 0.0625, 0.125, 1, 0.125], [0.1875, 0.5, 0.9375, 0.125, 1, 0.125], [0.875, 0.5, 0.0625, 0.25, 1, 0.125], [0.875, 0.5, 0.9375, 0.25, 1, 0.125], [0.9375, 0.5, 0.1875, 0.125, 1, 0.125], [0.9375, 0.5, 0.8125, 0.125, 1, 0.125], [0.5, 0.21875, 0.5, 1, 0.0625, 0.5], [0.5, 0.21875, 0.1875, 0.75, 0.0625, 0.125], [0.5, 0.21875, 0.8125, 0.75, 0.0625, 0.125], [0.5, 0.59375, 0.0625, 0.5, 0.8125, 0.125], [0.5, 0.59375, 0.9375, 0.5, 0.8125, 0.125], [0.0625, 0.625, 0.5, 0.125, 0.75, 0.5], [0.9375, 0.625, 0.5, 0.125, 0.75, 0.5]], + "114": [[0.5, 0.40625, 0.5, 1, 0.8125, 1], [0.5, 0.90625, 0.5, 0.5, 0.1875, 0.5]], + "115": [[0.5, 0.40625, 0.5, 1, 0.8125, 1]], + "116": [[0.5, 0.5, 0.5, 0.875, 1, 0.875]], + "117": [[0.5, 0.59375, 0.1875, 0.25, 0.3125, 0.25]], + "118": [[0.5, 0.59375, 0.8125, 0.25, 0.3125, 0.25]], + "119": [[0.1875, 0.59375, 0.5, 0.25, 0.3125, 0.25]], + "120": [[0.8125, 0.59375, 0.5, 0.25, 0.3125, 0.25]], + "121": [[0.5, 0.53125, 0.25, 0.375, 0.4375, 0.375]], + "122": [[0.5, 0.53125, 0.75, 0.375, 0.4375, 0.375]], + "123": [[0.25, 0.53125, 0.5, 0.375, 0.4375, 0.375]], + "124": [[0.75, 0.53125, 0.5, 0.375, 0.4375, 0.375]], + "125": [[0.5, 0.46875, 0.3125, 0.5, 0.5625, 0.5]], + "126": [[0.5, 0.46875, 0.6875, 0.5, 0.5625, 0.5]], + "127": [[0.3125, 0.46875, 0.5, 0.5, 0.5625, 0.5]], + "128": [[0.6875, 0.46875, 0.5, 0.5, 0.5625, 0.5]], + "129": [[0.5, 0.75, 0.5, 0.5, 1.5, 0.5]], + "130": [[0.375, 0.75, 0.5, 0.75, 1.5, 0.375], [0.5, 0.75, 0.28125, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.71875, 0.5, 1.5, 0.0625]], + "131": [[0.34375, 0.75, 0.5, 0.6875, 1.5, 0.375]], + "132": [[0.5, 0.75, 0.5, 0.5, 1.5, 0.5], [0.5, 0.75, 0.875, 0.375, 1.5, 0.25]], + "133": [[0.375, 0.75, 0.5, 0.75, 1.5, 0.375], [0.5, 0.75, 0.28125, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.71875, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.875, 0.375, 1.5, 0.25]], + "134": [[0.5, 0.75, 0.65625, 0.375, 1.5, 0.6875]], + "135": [[0.34375, 0.75, 0.5, 0.6875, 1.5, 0.375], [0.5, 0.75, 0.84375, 0.375, 1.5, 0.3125]], + "136": [[0.5, 0.75, 0.5, 0.5, 1.5, 0.5], [0.5, 0.75, 0.125, 0.375, 1.5, 0.25]], + "137": [[0.375, 0.75, 0.5, 0.75, 1.5, 0.375], [0.5, 0.75, 0.28125, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.71875, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.125, 0.375, 1.5, 0.25]], + "138": [[0.5, 0.75, 0.34375, 0.375, 1.5, 0.6875]], + "139": [[0.34375, 0.75, 0.5, 0.6875, 1.5, 0.375], [0.5, 0.75, 0.15625, 0.375, 1.5, 0.3125]], + "140": [[0.5, 0.75, 0.5, 0.5, 1.5, 0.5], [0.5, 0.75, 0.125, 0.375, 1.5, 0.25], [0.5, 0.75, 0.875, 0.375, 1.5, 0.25]], + "141": [[0.375, 0.75, 0.5, 0.75, 1.5, 0.375], [0.5, 0.75, 0.28125, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.71875, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.125, 0.375, 1.5, 0.25], [0.5, 0.75, 0.875, 0.375, 1.5, 0.25]], + "142": [[0.5, 0.75, 0.5, 0.375, 1.5, 1]], + "143": [[0.34375, 0.75, 0.5, 0.6875, 1.5, 0.375], [0.5, 0.75, 0.15625, 0.375, 1.5, 0.3125], [0.5, 0.75, 0.84375, 0.375, 1.5, 0.3125]], + "144": [[0.5, 0.75, 0.5, 0.5, 1.5, 0.5], [0.875, 0.75, 0.5, 0.25, 1.5, 0.375]], + "145": [[0.5, 0.75, 0.5, 1, 1.5, 0.375], [0.5, 0.75, 0.28125, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.71875, 0.5, 1.5, 0.0625]], + "146": [[0.65625, 0.75, 0.5, 0.6875, 1.5, 0.375]], + "147": [[0.5, 0.75, 0.5, 1, 1.5, 0.375]], + "148": [[0.5, 0.75, 0.5, 0.5, 1.5, 0.5], [0.5, 0.75, 0.875, 0.375, 1.5, 0.25], [0.875, 0.75, 0.5, 0.25, 1.5, 0.375]], + "149": [[0.5, 0.75, 0.5, 1, 1.5, 0.375], [0.5, 0.75, 0.28125, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.71875, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.875, 0.375, 1.5, 0.25]], + "150": [[0.5, 0.75, 0.65625, 0.375, 1.5, 0.6875], [0.84375, 0.75, 0.5, 0.3125, 1.5, 0.375]], + "151": [[0.5, 0.75, 0.5, 1, 1.5, 0.375], [0.5, 0.75, 0.84375, 0.375, 1.5, 0.3125]], + "152": [[0.5, 0.75, 0.5, 0.5, 1.5, 0.5], [0.5, 0.75, 0.125, 0.375, 1.5, 0.25], [0.875, 0.75, 0.5, 0.25, 1.5, 0.375]], + "153": [[0.5, 0.75, 0.5, 1, 1.5, 0.375], [0.5, 0.75, 0.28125, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.71875, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.125, 0.375, 1.5, 0.25]], + "154": [[0.5, 0.75, 0.34375, 0.375, 1.5, 0.6875], [0.84375, 0.75, 0.5, 0.3125, 1.5, 0.375]], + "155": [[0.5, 0.75, 0.5, 1, 1.5, 0.375], [0.5, 0.75, 0.15625, 0.375, 1.5, 0.3125]], + "156": [[0.5, 0.75, 0.5, 0.5, 1.5, 0.5], [0.5, 0.75, 0.125, 0.375, 1.5, 0.25], [0.5, 0.75, 0.875, 0.375, 1.5, 0.25], [0.875, 0.75, 0.5, 0.25, 1.5, 0.375]], + "157": [[0.5, 0.75, 0.5, 1, 1.5, 0.375], [0.5, 0.75, 0.28125, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.71875, 0.5, 1.5, 0.0625], [0.5, 0.75, 0.125, 0.375, 1.5, 0.25], [0.5, 0.75, 0.875, 0.375, 1.5, 0.25]], + "158": [[0.5, 0.75, 0.5, 0.375, 1.5, 1], [0.84375, 0.75, 0.5, 0.3125, 1.5, 0.375]], + "159": [[0.5, 0.75, 0.5, 1, 1.5, 0.375], [0.5, 0.75, 0.15625, 0.375, 1.5, 0.3125], [0.5, 0.75, 0.84375, 0.375, 1.5, 0.3125]], + "160": [[0.5, 0.1875, 0.5, 0.375, 0.375, 0.375]], + "161": [[0.5, 0.25, 0.5, 0.5, 0.5, 0.5]], + "162": [[0.5, 0.5, 0.75, 0.5, 0.5, 0.5]], + "163": [[0.5, 0.5, 0.25, 0.5, 0.5, 0.5]], + "164": [[0.75, 0.5, 0.5, 0.5, 0.5, 0.5]], + "165": [[0.25, 0.5, 0.5, 0.5, 0.5, 0.5]], + "166": [[0.5, 0.25, 0.5, 0.625, 0.5, 0.625]], + "167": [[0.5, 0.5, 0.75, 0.625, 0.5, 0.5]], + "168": [[0.5, 0.5, 0.25, 0.625, 0.5, 0.5]], + "169": [[0.75, 0.5, 0.5, 0.5, 0.5, 0.625]], + "170": [[0.25, 0.5, 0.5, 0.5, 0.5, 0.625]], + "171": [[0.5, 0.125, 0.5, 0.75, 0.25, 0.75], [0.5, 0.28125, 0.5, 0.5, 0.0625, 0.625], [0.5, 0.65625, 0.5, 0.25, 0.6875, 0.5], [0.28125, 0.8125, 0.5, 0.1875, 0.375, 1], [0.59375, 0.8125, 0.125, 0.4375, 0.375, 0.25], [0.59375, 0.8125, 0.875, 0.4375, 0.375, 0.25], [0.71875, 0.8125, 0.5, 0.1875, 0.375, 0.5]], + "172": [[0.5, 0.125, 0.5, 0.75, 0.25, 0.75], [0.5, 0.28125, 0.5, 0.625, 0.0625, 0.5], [0.5, 0.65625, 0.5, 0.5, 0.6875, 0.25], [0.125, 0.8125, 0.5, 0.25, 0.375, 0.625], [0.625, 0.8125, 0.28125, 0.75, 0.375, 0.1875], [0.625, 0.8125, 0.71875, 0.75, 0.375, 0.1875], [0.875, 0.8125, 0.5, 0.25, 0.375, 0.25]], + "173": [[0.5, 0.34375, 0.5, 0.25, 0.6875, 0.25], [0.3125, 0.46875, 0.5, 0.125, 0.4375, 0.5], [0.5625, 0.46875, 0.3125, 0.375, 0.4375, 0.125], [0.5625, 0.46875, 0.6875, 0.375, 0.4375, 0.125], [0.6875, 0.46875, 0.5, 0.125, 0.4375, 0.25], [0.125, 0.65625, 0.5, 0.25, 0.0625, 1], [0.625, 0.65625, 0.125, 0.75, 0.0625, 0.25], [0.625, 0.65625, 0.875, 0.75, 0.0625, 0.25], [0.875, 0.65625, 0.5, 0.25, 0.0625, 0.5], [0.0625, 0.84375, 0.5, 0.125, 0.3125, 1], [0.5625, 0.84375, 0.0625, 0.875, 0.3125, 0.125], [0.5625, 0.84375, 0.9375, 0.875, 0.3125, 0.125], [0.9375, 0.84375, 0.5, 0.125, 0.3125, 0.75]], + "174": [[0.5, 0.46875, 0.5, 0.5, 0.4375, 0.5], [0.5, 0.375, 0.125, 0.25, 0.25, 0.25], [0.125, 0.65625, 0.5, 0.25, 0.0625, 1], [0.625, 0.65625, 0.125, 0.75, 0.0625, 0.25], [0.625, 0.65625, 0.875, 0.75, 0.0625, 0.25], [0.875, 0.65625, 0.5, 0.25, 0.0625, 0.5], [0.0625, 0.84375, 0.5, 0.125, 0.3125, 1], [0.5625, 0.84375, 0.0625, 0.875, 0.3125, 0.125], [0.5625, 0.84375, 0.9375, 0.875, 0.3125, 0.125], [0.9375, 0.84375, 0.5, 0.125, 0.3125, 0.75]], + "175": [[0.5, 0.46875, 0.5, 0.5, 0.4375, 0.5], [0.5, 0.375, 0.875, 0.25, 0.25, 0.25], [0.125, 0.65625, 0.5, 0.25, 0.0625, 1], [0.625, 0.65625, 0.125, 0.75, 0.0625, 0.25], [0.625, 0.65625, 0.875, 0.75, 0.0625, 0.25], [0.875, 0.65625, 0.5, 0.25, 0.0625, 0.5], [0.0625, 0.84375, 0.5, 0.125, 0.3125, 1], [0.5625, 0.84375, 0.0625, 0.875, 0.3125, 0.125], [0.5625, 0.84375, 0.9375, 0.875, 0.3125, 0.125], [0.9375, 0.84375, 0.5, 0.125, 0.3125, 0.75]], + "176": [[0.375, 0.375, 0.5, 0.75, 0.25, 0.25], [0.5, 0.46875, 0.3125, 0.5, 0.4375, 0.125], [0.5, 0.46875, 0.6875, 0.5, 0.4375, 0.125], [0.5, 0.59375, 0.5, 0.5, 0.1875, 0.25], [0.125, 0.65625, 0.5, 0.25, 0.0625, 1], [0.625, 0.65625, 0.125, 0.75, 0.0625, 0.25], [0.625, 0.65625, 0.875, 0.75, 0.0625, 0.25], [0.875, 0.65625, 0.5, 0.25, 0.0625, 0.5], [0.0625, 0.84375, 0.5, 0.125, 0.3125, 1], [0.5625, 0.84375, 0.0625, 0.875, 0.3125, 0.125], [0.5625, 0.84375, 0.9375, 0.875, 0.3125, 0.125], [0.9375, 0.84375, 0.5, 0.125, 0.3125, 0.75]], + "177": [[0.5, 0.46875, 0.5, 0.5, 0.4375, 0.5], [0.875, 0.375, 0.5, 0.25, 0.25, 0.25], [0.125, 0.65625, 0.5, 0.25, 0.0625, 1], [0.625, 0.65625, 0.125, 0.75, 0.0625, 0.25], [0.625, 0.65625, 0.875, 0.75, 0.0625, 0.25], [0.875, 0.65625, 0.5, 0.25, 0.0625, 0.5], [0.0625, 0.84375, 0.5, 0.125, 0.3125, 1], [0.5625, 0.84375, 0.0625, 0.875, 0.3125, 0.125], [0.5625, 0.84375, 0.9375, 0.875, 0.3125, 0.125], [0.9375, 0.84375, 0.5, 0.125, 0.3125, 0.75]], + "178": [[0.5, 0.75, 0.5, 1, 0.5, 1]], + "179": [[0.5, 0.03125, 0.5, 1, 0.0625, 1]], + "180": [[0.5, 0.5, 0.5, 0.25, 0.25, 1]], + "181": [[0.5, 0.5, 0.5, 1, 0.25, 0.25]], + "182": [[0.5, 0.5, 0.5, 0.25, 1, 0.25]], + "183": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "184": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "185": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "186": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "187": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "188": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "189": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "190": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "191": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "192": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "193": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "194": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "195": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "196": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "197": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "198": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "199": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "200": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "201": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "202": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "203": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875]], + "204": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875]], + "205": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875]], + "206": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875]], + "207": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "208": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "209": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "210": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "211": [[0.5, 0.5, 0.5, 0.625, 1, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "212": [[0.5, 0.5, 0.5, 0.625, 1, 0.625]], + "213": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625], [0.09375, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "214": [[0.5, 0.40625, 0.5, 0.625, 0.8125, 0.625]], + "215": [[0.5, 0.5, 0.5, 1, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "216": [[0.5, 0.5, 0.5, 0.625, 0.625, 1], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "217": [[0.5, 0.5, 0.5, 1, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "218": [[0.5, 0.5, 0.5, 0.625, 0.625, 1], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "219": [[0.5, 0.5, 0.5, 1, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "220": [[0.5, 0.5, 0.40625, 0.625, 0.625, 0.8125], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "221": [[0.5, 0.5, 0.5, 1, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875]], + "222": [[0.5, 0.5, 0.40625, 0.625, 0.625, 0.8125], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "223": [[0.5, 0.5, 0.5, 1, 0.625, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "224": [[0.5, 0.5, 0.59375, 0.625, 0.625, 0.8125], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "225": [[0.5, 0.5, 0.5, 1, 0.625, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "226": [[0.5, 0.5, 0.59375, 0.625, 0.625, 0.8125], [0.90625, 0.5, 0.5, 0.1875, 0.625, 0.625]], + "227": [[0.5, 0.5, 0.5, 1, 0.625, 0.625], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "228": [[0.59375, 0.5, 0.5, 0.8125, 0.625, 0.625], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "229": [[0.5, 0.5, 0.5, 1, 0.625, 0.625]], + "230": [[0.59375, 0.5, 0.5, 0.8125, 0.625, 0.625]], + "231": [[0.40625, 0.5, 0.5, 0.8125, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "232": [[0.5, 0.5, 0.5, 0.625, 0.625, 1], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "233": [[0.40625, 0.5, 0.5, 0.8125, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "234": [[0.5, 0.5, 0.5, 0.625, 0.625, 1]], + "235": [[0.40625, 0.5, 0.5, 0.8125, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "236": [[0.5, 0.5, 0.40625, 0.625, 0.625, 0.8125], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "237": [[0.40625, 0.5, 0.5, 0.8125, 0.625, 0.625], [0.5, 0.5, 0.09375, 0.625, 0.625, 0.1875]], + "238": [[0.5, 0.5, 0.40625, 0.625, 0.625, 0.8125]], + "239": [[0.40625, 0.5, 0.5, 0.8125, 0.625, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "240": [[0.5, 0.5, 0.59375, 0.625, 0.625, 0.8125], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "241": [[0.40625, 0.5, 0.5, 0.8125, 0.625, 0.625], [0.5, 0.5, 0.90625, 0.625, 0.625, 0.1875]], + "242": [[0.5, 0.5, 0.59375, 0.625, 0.625, 0.8125]], + "243": [[0.40625, 0.5, 0.5, 0.8125, 0.625, 0.625], [0.5, 0.90625, 0.5, 0.625, 0.1875, 0.625]], + "244": [[0.5, 0.59375, 0.5, 0.625, 0.8125, 0.625]], + "245": [[0.40625, 0.5, 0.5, 0.8125, 0.625, 0.625]], + "246": [[0.5, 0.5, 0.5, 0.625, 0.625, 0.625]], + "247": [[0.5, 0.0625, 0.5, 0.375, 0.25, 0.375]], + "248": [[0.5, 0.125, 0.5, 0.625, 0.375, 0.625]], + "249": [[0.46875, 0.21875, 0.46875, 0.5625, 0.4375, 0.5625]], + "250": [[0.5, 0.21875, 0.5, 0.875, 0.4375, 0.875]], + "251": [[0.5, 0.5, 0.5, 0.875, 1, 0.75]], + "252": [[0.5, 0.1875, 0.5, 0.25, 0.375, 0.25]], + "253": [[0.5, 0.1875, 0.5, 0.625, 0.375, 0.625]], + "254": [[0.5, 0.1875, 0.5, 0.75, 0.375, 0.75]], + "255": [[0.5, 0.21875, 0.5, 0.75, 0.4375, 0.75]], + "256": [[0.5, 0.5, 0.5, 0.375, 0.375, 0.375]], + "257": [[0.25, 0.5, 0.25, 0.1875, 1, 0.1875]], + "258": [[0.0625, 0.5, 0.0625, 0.125, 1, 0.125], [0.0625, 0.5, 0.9375, 0.125, 1, 0.125], [0.9375, 0.5, 0.0625, 0.125, 1, 0.125], [0.9375, 0.5, 0.9375, 0.125, 1, 0.125], [0.5, 0.9375, 0.5, 1, 0.125, 0.75], [0.5, 0.9375, 0.0625, 0.75, 0.125, 0.125], [0.5, 0.9375, 0.9375, 0.75, 0.125, 0.125]], + "259": [[0.1875, 0.40625, 0.5, 0.125, 0.8125, 0.25], [0.8125, 0.40625, 0.5, 0.125, 0.8125, 0.25], [0.5, 0.625, 0.5, 0.5, 0.75, 0.75], [0.1875, 0.625, 0.34375, 0.125, 0.375, 0.0625], [0.1875, 0.625, 0.65625, 0.125, 0.375, 0.0625], [0.8125, 0.625, 0.34375, 0.125, 0.375, 0.0625], [0.8125, 0.625, 0.65625, 0.125, 0.375, 0.0625]], + "260": [[0.5, 0.40625, 0.1875, 0.25, 0.8125, 0.125], [0.5, 0.40625, 0.8125, 0.25, 0.8125, 0.125], [0.5, 0.625, 0.5, 0.75, 0.75, 0.5], [0.34375, 0.625, 0.1875, 0.0625, 0.375, 0.125], [0.34375, 0.625, 0.8125, 0.0625, 0.375, 0.125], [0.65625, 0.625, 0.1875, 0.0625, 0.375, 0.125], [0.65625, 0.625, 0.8125, 0.0625, 0.375, 0.125]], + "261": [[0.5, 0.5, 0.375, 0.5, 0.75, 0.75], [0.1875, 0.5, 0.375, 0.125, 0.375, 0.375], [0.8125, 0.5, 0.375, 0.125, 0.375, 0.375], [0.1875, 0.5, 0.78125, 0.125, 0.25, 0.4375], [0.8125, 0.5, 0.78125, 0.125, 0.25, 0.4375]], + "262": [[0.5, 0.5, 0.625, 0.5, 0.75, 0.75], [0.1875, 0.5, 0.625, 0.125, 0.375, 0.375], [0.8125, 0.5, 0.625, 0.125, 0.375, 0.375], [0.1875, 0.5, 0.21875, 0.125, 0.25, 0.4375], [0.8125, 0.5, 0.21875, 0.125, 0.25, 0.4375]], + "263": [[0.375, 0.5, 0.5, 0.75, 0.75, 0.5], [0.375, 0.5, 0.1875, 0.375, 0.375, 0.125], [0.375, 0.5, 0.8125, 0.375, 0.375, 0.125], [0.78125, 0.5, 0.1875, 0.4375, 0.25, 0.125], [0.78125, 0.5, 0.8125, 0.4375, 0.25, 0.125]], + "264": [[0.625, 0.5, 0.5, 0.75, 0.75, 0.5], [0.625, 0.5, 0.1875, 0.375, 0.375, 0.125], [0.625, 0.5, 0.8125, 0.375, 0.375, 0.125], [0.21875, 0.5, 0.1875, 0.4375, 0.25, 0.125], [0.21875, 0.5, 0.8125, 0.4375, 0.25, 0.125]], + "265": [[0.5, 0.375, 0.5, 0.5, 0.75, 0.75], [0.1875, 0.375, 0.5, 0.125, 0.375, 0.375], [0.8125, 0.375, 0.5, 0.125, 0.375, 0.375], [0.1875, 0.78125, 0.5, 0.125, 0.4375, 0.25], [0.8125, 0.78125, 0.5, 0.125, 0.4375, 0.25]], + "266": [[0.5, 0.375, 0.5, 0.75, 0.75, 0.5], [0.5, 0.375, 0.1875, 0.375, 0.375, 0.125], [0.5, 0.375, 0.8125, 0.375, 0.375, 0.125], [0.5, 0.78125, 0.1875, 0.25, 0.4375, 0.125], [0.5, 0.78125, 0.8125, 0.25, 0.4375, 0.125]], + "267": [[0.5, 0.0625, 0.5, 1, 0.125, 1], [0.5, 0.5, 0.5, 0.5, 0.75, 0.5]], + "268": [[0.5, 0.28125, 0.5, 1, 0.5625, 1]], + "269": [[0.5, 0.5, 0.5, 1, 1, 0.5]], + "270": [[0.5, 0.5, 0.5, 0.5, 1, 1]], + "271": [[0.5, 0.3125, 0.5, 0.5, 0.125, 0.5], [0.5, 0.59375, 0.5, 0.375, 0.4375, 0.375], [0.5, 0.90625, 0.5, 0.125, 0.1875, 0.125]], + "272": [[0.5, 0.3125, 0.5, 0.5, 0.125, 0.5], [0.5, 0.59375, 0.5, 0.375, 0.4375, 0.375], [0.5, 0.875, 0.40625, 0.125, 0.125, 0.8125]], + "273": [[0.5, 0.3125, 0.5, 0.5, 0.125, 0.5], [0.5, 0.59375, 0.5, 0.375, 0.4375, 0.375], [0.5, 0.875, 0.59375, 0.125, 0.125, 0.8125]], + "274": [[0.5, 0.3125, 0.5, 0.5, 0.125, 0.5], [0.5, 0.59375, 0.5, 0.375, 0.4375, 0.375], [0.40625, 0.875, 0.5, 0.8125, 0.125, 0.125]], + "275": [[0.5, 0.3125, 0.5, 0.5, 0.125, 0.5], [0.5, 0.59375, 0.5, 0.375, 0.4375, 0.375], [0.59375, 0.875, 0.5, 0.8125, 0.125, 0.125]], + "276": [[0.5, 0.3125, 0.5, 0.5, 0.125, 0.5], [0.5, 0.59375, 0.5, 0.375, 0.4375, 0.375], [0.5, 0.875, 0.5, 0.125, 0.125, 1]], + "277": [[0.5, 0.3125, 0.5, 0.5, 0.125, 0.5], [0.5, 0.59375, 0.5, 0.375, 0.4375, 0.375], [0.5, 0.875, 0.5, 1, 0.125, 0.125]], + "278": [[0.5, 0.28125, 0.5, 0.375, 0.4375, 0.375], [0.5, 0.5625, 0.5, 0.25, 0.125, 0.25]], + "279": [[0.5, 0.21875, 0.5, 0.375, 0.4375, 0.375], [0.5, 0.5, 0.5, 0.25, 0.125, 0.25]], + "280": [[0.5, 0.21875, 0.5, 1, 0.4375, 1]], + "281": [[0.5, 0.0625, 0.5, 1, 0.125, 1], [0.0625, 0.5625, 0.5, 0.125, 0.875, 1], [0.5625, 0.5625, 0.0625, 0.875, 0.875, 0.125], [0.5625, 0.5625, 0.9375, 0.875, 0.875, 0.125], [0.9375, 0.5625, 0.5, 0.125, 0.875, 0.75]], + "282": [[0.5, 0.1875, 0.5, 0.125, 0.375, 0.125]], + "283": [[0.5, 0.1875, 0.46875, 0.375, 0.375, 0.1875]], + "284": [[0.46875, 0.1875, 0.53125, 0.3125, 0.375, 0.3125]], + "285": [[0.5, 0.1875, 0.46875, 0.375, 0.375, 0.3125]], + "286": [[0.5, 0.25, 0.5, 0.875, 0.5, 0.875], [0.5, 0.6875, 0.5, 0.125, 0.375, 0.125]], + "287": [[0.5, 0.5, 0.78125, 0.625, 0.625, 0.4375]], + "288": [[0.21875, 0.5, 0.5, 0.4375, 0.625, 0.625]], + "289": [[0.5, 0.5, 0.21875, 0.625, 0.625, 0.4375]], + "290": [[0.78125, 0.5, 0.5, 0.4375, 0.625, 0.625]], + "291": [[0.5, 0.21875, 0.5, 0.625, 0.4375, 0.625]], + "292": [[0.5, 0.78125, 0.5, 0.625, 0.4375, 0.625]], + "293": [[0.5, 0.5, 0.84375, 0.625, 0.625, 0.3125]], + "294": [[0.15625, 0.5, 0.5, 0.3125, 0.625, 0.625]], + "295": [[0.5, 0.5, 0.15625, 0.625, 0.625, 0.3125]], + "296": [[0.84375, 0.5, 0.5, 0.3125, 0.625, 0.625]], + "297": [[0.5, 0.15625, 0.5, 0.625, 0.3125, 0.625]], + "298": [[0.5, 0.84375, 0.5, 0.625, 0.3125, 0.625]], + "299": [[0.5, 0.5, 0.875, 0.625, 0.625, 0.25]], + "300": [[0.125, 0.5, 0.5, 0.25, 0.625, 0.625]], + "301": [[0.5, 0.5, 0.125, 0.625, 0.625, 0.25]], + "302": [[0.875, 0.5, 0.5, 0.25, 0.625, 0.625]], + "303": [[0.5, 0.125, 0.5, 0.625, 0.25, 0.625]], + "304": [[0.5, 0.875, 0.5, 0.625, 0.25, 0.625]], + "305": [[0.5, 0.5, 0.90625, 0.5, 0.5, 0.1875]], + "306": [[0.09375, 0.5, 0.5, 0.1875, 0.5, 0.5]], + "307": [[0.5, 0.5, 0.09375, 0.5, 0.5, 0.1875]], + "308": [[0.90625, 0.5, 0.5, 0.1875, 0.5, 0.5]], + "309": [[0.5, 0.09375, 0.5, 0.5, 0.1875, 0.5]], + "310": [[0.5, 0.90625, 0.5, 0.5, 0.1875, 0.5]], + "311": [[0.375, 0.5, 0.375, 0.375, 1, 0.375]], + "312": [[0.375, 0.34375, 0.375, 0.375, 0.6875, 0.375]], + "313": [[0.375, 0.65625, 0.375, 0.375, 0.6875, 0.375]], + "314": [[0.375, 0.5, 0.375, 0.5, 1, 0.5]], + "315": [[0.375, 0.5, 0.375, 0.625, 1, 0.625]], + "316": [[0.375, 0.5, 0.375, 0.75, 1, 0.75]], + "317": [[0.5, 0.5, 0.5, 0.25, 1, 0.25], [0.1875, 0.75, 0.5, 0.375, 0.5, 1], [0.6875, 0.75, 0.1875, 0.625, 0.5, 0.375], [0.6875, 0.75, 0.8125, 0.625, 0.5, 0.375], [0.8125, 0.75, 0.5, 0.375, 0.5, 0.25]], + "318": [[0.5, 0.8125, 0.5, 1, 0.25, 1]], + "319": [[0.5, 0.75, 0.5, 1, 0.125, 1]] + } +} \ No newline at end of file diff --git a/data/bedrock/1.21.0/blockStates.json b/data/bedrock/1.21.0/blockStates.json new file mode 100644 index 000000000..db4c7889a --- /dev/null +++ b/data/bedrock/1.21.0/blockStates.json @@ -0,0 +1,288037 @@ +[ + { + "name": "cyan_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_pink_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "blue_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blue_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blue_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blue_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blue_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blue_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blue_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blue_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "birch_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "polished_basalt", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "polished_basalt", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "polished_basalt", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "nether_gold_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "bamboo_block", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_block", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_block", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_chiseled_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "granite", + "states": {}, + "version": 18153475 + }, + { + "name": "blue_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powder_snow", + "states": {}, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_copper_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "yellow_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "blackstone_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "blackstone_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "lime_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "red_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "jungle_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "spruce_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "spruce_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "spruce_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "spruce_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "hard_green_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "diorite", + "states": {}, + "version": 18153475 + }, + { + "name": "gray_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "gray_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "cherry_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "yellow_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "crimson_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "crimson_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "crimson_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "crimson_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "yellow_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "end_gateway", + "states": {}, + "version": 18153475 + }, + { + "name": "azure_bluet", + "states": {}, + "version": 18153475 + }, + { + "name": "beacon", + "states": {}, + "version": 18153475 + }, + { + "name": "red_nether_brick", + "states": {}, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 0 + }, + "height": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 0 + }, + "height": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 0 + }, + "height": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 0 + }, + "height": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 0 + }, + "height": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 0 + }, + "height": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 0 + }, + "height": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 0 + }, + "height": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 1 + }, + "height": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 1 + }, + "height": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 1 + }, + "height": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 1 + }, + "height": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 1 + }, + "height": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 1 + }, + "height": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 1 + }, + "height": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "snow_layer", + "states": { + "covered_bit": { + "type": "byte", + "value": 1 + }, + "height": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "black_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "black_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "black_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "black_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "black_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "black_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "black_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "black_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blue_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_frame", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "hanging_roots", + "states": {}, + "version": 18153475 + }, + { + "name": "prismarine_bricks_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_bricks_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_bricks_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_bricks_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_bricks_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_bricks_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_bricks_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_bricks_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "calcite", + "states": {}, + "version": 18153475 + }, + { + "name": "stripped_dark_oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_dark_oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_dark_oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "hard_orange_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "dead_bubble_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dead_bubble_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "jungle_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "jungle_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "bubble_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bubble_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hard_brown_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "sculk_shrieker", + "states": { + "active": { + "type": "byte", + "value": 0 + }, + "can_summon": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sculk_shrieker", + "states": { + "active": { + "type": "byte", + "value": 1 + }, + "can_summon": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sculk_shrieker", + "states": { + "active": { + "type": "byte", + "value": 0 + }, + "can_summon": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sculk_shrieker", + "states": { + "active": { + "type": "byte", + "value": 1 + }, + "can_summon": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "gray_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "orange_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_black_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "gray_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "lily_of_the_valley", + "states": {}, + "version": 18153475 + }, + { + "name": "lime_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lime_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lime_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "lime_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "lime_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "lime_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dead_brain_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dead_brain_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "info_update", + "states": {}, + "version": 18153475 + }, + { + "name": "seagrass", + "states": { + "sea_grass_type": { + "type": "string", + "value": "default" + } + }, + "version": 18153475 + }, + { + "name": "seagrass", + "states": { + "sea_grass_type": { + "type": "string", + "value": "double_top" + } + }, + "version": 18153475 + }, + { + "name": "seagrass", + "states": { + "sea_grass_type": { + "type": "string", + "value": "double_bot" + } + }, + "version": 18153475 + }, + { + "name": "tube_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tube_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "redstone_lamp", + "states": {}, + "version": 18153475 + }, + { + "name": "mossy_cobblestone", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "deepslate", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "deepslate", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "magenta_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 2 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 2 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 3 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 3 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 4 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 4 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 5 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 5 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 6 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 6 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 7 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_crop", + "states": { + "growth": { + "type": "int", + "value": 7 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brown_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_exposed_chiseled_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "tuff_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "tuff_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "warped_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "stripped_acacia_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_acacia_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_acacia_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "diamond_block", + "states": {}, + "version": 18153475 + }, + { + "name": "oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "hard_gray_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "brown_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "end_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "magenta_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "packed_ice", + "states": {}, + "version": 18153475 + }, + { + "name": "packed_mud", + "states": {}, + "version": 18153475 + }, + { + "name": "light_blue_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "moss_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_fungus", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_deepslate_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "amethyst_block", + "states": {}, + "version": 18153475 + }, + { + "name": "gold_block", + "states": {}, + "version": 18153475 + }, + { + "name": "flower_pot", + "states": { + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "flower_pot", + "states": { + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 0 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 0 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 0 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 0 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 1 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 1 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 1 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 1 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 2 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 2 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 2 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 2 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 3 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 3 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 3 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 3 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 4 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 4 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 4 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 4 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 5 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 5 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 5 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 5 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 6 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 6 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 6 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 6 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 7 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 7 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 7 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 7 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 8 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 8 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 8 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 8 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 9 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 9 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 9 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 9 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 10 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 10 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 10 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 10 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 11 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 11 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 11 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 11 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 12 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 12 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 12 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 12 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 13 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 13 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 13 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 13 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 14 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 14 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 14 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 14 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 15 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 15 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 15 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 15 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 16 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 16 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 16 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 16 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 17 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 17 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 17 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 17 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 18 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 18 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 18 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 18 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 19 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 19 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 19 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 19 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 20 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 20 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 20 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 20 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 21 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 21 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 21 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 21 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 22 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 22 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 22 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 22 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 23 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 23 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 23 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 23 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 24 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 24 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 24 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 24 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 25 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 25 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 25 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 25 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 26 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 26 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 26 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 26 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 27 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 27 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 27 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 27 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 28 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 28 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 28 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 28 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 29 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 29 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 29 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 29 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 30 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 30 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 30 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 30 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 31 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 31 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 31 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 31 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 32 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 32 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 32 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 32 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 33 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 33 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 33 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 33 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 34 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 34 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 34 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 34 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 35 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 35 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 35 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 35 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 36 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 36 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 36 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 36 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 37 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 37 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 37 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 37 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 38 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 38 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 38 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 38 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 39 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 39 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 39 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 39 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 40 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 40 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 40 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 40 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 41 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 41 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 41 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 41 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 42 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 42 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 42 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 42 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 43 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 43 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 43 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 43 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 44 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 44 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 44 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 44 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 45 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 45 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 45 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 45 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 46 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 46 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 46 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 46 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 47 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 47 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 47 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 47 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 48 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 48 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 48 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 48 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 49 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 49 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 49 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 49 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 50 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 50 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 50 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 50 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 51 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 51 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 51 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 51 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 52 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 52 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 52 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 52 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 53 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 53 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 53 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 53 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 54 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 54 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 54 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 54 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 55 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 55 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 55 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 55 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 56 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 56 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 56 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 56 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 57 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 57 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 57 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 57 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 58 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 58 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 58 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 58 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 59 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 59 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 59 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 59 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 60 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 60 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 60 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 60 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 61 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 61 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 61 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 61 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 62 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 62 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 62 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 62 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 63 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 63 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 63 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_bookshelf", + "states": { + "books_stored": { + "type": "int", + "value": 63 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "yellow_flower", + "states": {}, + "version": 18153475 + }, + { + "name": "lime_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "weathered_chiseled_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "small_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "down" + } + }, + "version": 18153475 + }, + { + "name": "small_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "up" + } + }, + "version": 18153475 + }, + { + "name": "small_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "small_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "small_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "small_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "activator_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "potatoes", + "states": { + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "potatoes", + "states": { + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "potatoes", + "states": { + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "potatoes", + "states": { + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "potatoes", + "states": { + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "potatoes", + "states": { + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "potatoes", + "states": { + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "potatoes", + "states": { + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "muddy_mangrove_roots", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "muddy_mangrove_roots", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "muddy_mangrove_roots", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "stripped_jungle_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_jungle_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_jungle_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "noteblock", + "states": {}, + "version": 18153475 + }, + { + "name": "tuff", + "states": {}, + "version": 18153475 + }, + { + "name": "mangrove_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "mangrove_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "mangrove_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "sandstone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "sandstone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "raw_gold_block", + "states": {}, + "version": 18153475 + }, + { + "name": "allium", + "states": {}, + "version": 18153475 + }, + { + "name": "white_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "copper_grate", + "states": {}, + "version": 18153475 + }, + { + "name": "black_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "orange_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "orange_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "orange_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "orange_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "orange_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "orange_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "orange_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "orange_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "warped_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "warped_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "warped_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "dark_oak_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "melon_block", + "states": {}, + "version": 18153475 + }, + { + "name": "black_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mob_spawner", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_granite", + "states": {}, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "soul_fire", + "states": { + "age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "mangrove_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "light_gray_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "obsidian", + "states": {}, + "version": 18153475 + }, + { + "name": "light_gray_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "dark_oak_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_grate", + "states": {}, + "version": 18153475 + }, + { + "name": "oxidized_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "oxidized_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_deepslate_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "stone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sponge", + "states": { + "sponge_type": { + "type": "string", + "value": "dry" + } + }, + "version": 18153475 + }, + { + "name": "sponge", + "states": { + "sponge_type": { + "type": "string", + "value": "wet" + } + }, + "version": 18153475 + }, + { + "name": "exposed_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "exposed_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "normal_stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "normal_stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "normal_stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "normal_stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "normal_stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "normal_stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "normal_stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "normal_stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "hardened_clay", + "states": {}, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stripped_jungle_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_jungle_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_jungle_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "oak_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "light_gray_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "smoker", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "smoker", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "smoker", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "smoker", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "brown_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "andesite", + "states": {}, + "version": 18153475 + }, + { + "name": "fire_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "stone", + "states": {}, + "version": 18153475 + }, + { + "name": "birch_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "birch_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "birch_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "hard_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brain_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "stripped_spruce_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_spruce_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_spruce_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "orange_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "crimson_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "crimson_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "respawn_anchor", + "states": { + "respawn_anchor_charge": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "respawn_anchor", + "states": { + "respawn_anchor_charge": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "respawn_anchor", + "states": { + "respawn_anchor_charge": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "respawn_anchor", + "states": { + "respawn_anchor_charge": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "respawn_anchor", + "states": { + "respawn_anchor_charge": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "green_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "green_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "green_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "green_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "green_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "green_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "green_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "green_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "birch_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "birch_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "birch_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 0 + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 1 + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 2 + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 3 + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 0 + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 1 + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 2 + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 3 + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 0 + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 1 + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 2 + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "hay_block", + "states": { + "deprecated": { + "type": "int", + "value": 3 + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "jungle_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "jungle_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "jungle_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "oak_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brain_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brain_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "honey_block", + "states": {}, + "version": 18153475 + }, + { + "name": "dripstone_block", + "states": {}, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "vine", + "states": { + "vine_direction_bits": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "blackstone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "gold_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "yellow_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "yellow_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "yellow_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "yellow_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "yellow_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "yellow_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "stonecutter", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "piston", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "piston", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "piston", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "piston", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "piston", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "piston", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "brown_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "dead_bubble_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "gray_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "gray_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "gray_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "gray_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "gray_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "gray_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "gray_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "gray_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "mangrove_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "invisible_bedrock", + "states": {}, + "version": 18153475 + }, + { + "name": "red_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "dead_fire_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "oxidized_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "magenta_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "magenta_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "magenta_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "magenta_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "magenta_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "magenta_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "magenta_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "mangrove_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "orange_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "orange_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "orange_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "orange_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "orange_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "orange_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "hard_brown_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "smooth_basalt", + "states": {}, + "version": 18153475 + }, + { + "name": "waterlily", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_light_blue_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "emerald_block", + "states": {}, + "version": 18153475 + }, + { + "name": "suspicious_sand", + "states": { + "brushed_progress": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_sand", + "states": { + "brushed_progress": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_sand", + "states": { + "brushed_progress": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_sand", + "states": { + "brushed_progress": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_sand", + "states": { + "brushed_progress": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_sand", + "states": { + "brushed_progress": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_sand", + "states": { + "brushed_progress": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_sand", + "states": { + "brushed_progress": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "heavy_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "purple_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "lightning_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lightning_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lightning_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "lightning_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "lightning_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "lightning_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "acacia_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "black_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_cobblestone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "granite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "diorite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "andesite" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "mossy_stone_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "end_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "prismarine" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_sandstone" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_wall", + "states": { + "wall_block_type": { + "type": "string", + "value": "red_nether_brick" + }, + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "underwater_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "underwater_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "underwater_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "underwater_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "underwater_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "underwater_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "spruce_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "spruce_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "ochre_froglight", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "ochre_froglight", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "ochre_froglight", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "down" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "up" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "north" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "south" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "west" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "east" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "down" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "up" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "north" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "south" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "west" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "observer", + "states": { + "minecraft:facing_direction": { + "type": "string", + "value": "east" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "silver_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "silver_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "silver_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "silver_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "silver_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "silver_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "pink_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glowingobsidian", + "states": {}, + "version": 18153475 + }, + { + "name": "brown_mushroom", + "states": {}, + "version": 18153475 + }, + { + "name": "cyan_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "brown_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brown_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brown_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "brown_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "brown_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "brown_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "copper_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "dark_oak_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "birch_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 0 + }, + "stability_check": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 1 + }, + "stability_check": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 2 + }, + "stability_check": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 3 + }, + "stability_check": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 4 + }, + "stability_check": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 5 + }, + "stability_check": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 6 + }, + "stability_check": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 7 + }, + "stability_check": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 0 + }, + "stability_check": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 1 + }, + "stability_check": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 2 + }, + "stability_check": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 3 + }, + "stability_check": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 4 + }, + "stability_check": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 5 + }, + "stability_check": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 6 + }, + "stability_check": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "scaffolding", + "states": { + "stability": { + "type": "int", + "value": 7 + }, + "stability_check": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "green_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "green_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stripped_bamboo_block", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_bamboo_block", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_bamboo_block", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "sculk_catalyst", + "states": { + "bloom": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sculk_catalyst", + "states": { + "bloom": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobblestone", + "states": {}, + "version": 18153475 + }, + { + "name": "horn_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "yellow_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "cyan_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "oak_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "oak_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "smooth_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "smooth_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "smooth_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "smooth_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "smooth_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "smooth_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "smooth_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "smooth_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "jungle_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "blue_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "sandstone", + "states": { + "sand_stone_type": { + "type": "string", + "value": "default" + } + }, + "version": 18153475 + }, + { + "name": "sandstone", + "states": { + "sand_stone_type": { + "type": "string", + "value": "heiroglyphs" + } + }, + "version": 18153475 + }, + { + "name": "sandstone", + "states": { + "sand_stone_type": { + "type": "string", + "value": "cut" + } + }, + "version": 18153475 + }, + { + "name": "sandstone", + "states": { + "sand_stone_type": { + "type": "string", + "value": "smooth" + } + }, + "version": 18153475 + }, + { + "name": "brown_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brown_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "acacia_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "acacia_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "acacia_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "light_weighted_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "undyed_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_blackstone", + "states": {}, + "version": 18153475 + }, + { + "name": "mycelium", + "states": {}, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "no_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thin" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "no_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thick" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "small_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thin" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "small_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thick" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "large_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thin" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "large_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thick" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "no_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thin" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "no_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thick" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "small_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thin" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "small_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thick" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "large_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thin" + } + }, + "version": 18153475 + }, + { + "name": "bamboo", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + }, + "bamboo_leaf_size": { + "type": "string", + "value": "large_leaves" + }, + "bamboo_stalk_thickness": { + "type": "string", + "value": "thick" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "default" + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "chiseled" + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "lines" + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "smooth" + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "default" + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "chiseled" + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "lines" + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "smooth" + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "default" + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "chiseled" + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "lines" + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "quartz_block", + "states": { + "chisel_type": { + "type": "string", + "value": "smooth" + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "stone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_chiseled_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "gray_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "green_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "warped_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "warped_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "warped_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "warped_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "smithing_table", + "states": {}, + "version": 18153475 + }, + { + "name": "weathered_copper_grate", + "states": {}, + "version": 18153475 + }, + { + "name": "poppy", + "states": {}, + "version": 18153475 + }, + { + "name": "tuff_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "green_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "green_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_plant", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pitcher_plant", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "spruce_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "netherite_block", + "states": {}, + "version": 18153475 + }, + { + "name": "pink_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "redstone_block", + "states": {}, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "redstone_wire", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "birch_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "loom", + "states": { + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "loom", + "states": { + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "loom", + "states": { + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "loom", + "states": { + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "dead_tube_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "end_stone", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_tuff_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "jungle_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "jungle_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "light_blue_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "glowstone", + "states": {}, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "stone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "hard_white_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "mud_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "farmland", + "states": { + "moisturized_amount": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "farmland", + "states": { + "moisturized_amount": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "farmland", + "states": { + "moisturized_amount": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "farmland", + "states": { + "moisturized_amount": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "farmland", + "states": { + "moisturized_amount": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "farmland", + "states": { + "moisturized_amount": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "farmland", + "states": { + "moisturized_amount": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "farmland", + "states": { + "moisturized_amount": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "rail", + "states": { + "rail_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mossy_cobblestone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mossy_cobblestone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mossy_cobblestone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mossy_cobblestone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mossy_cobblestone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mossy_cobblestone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mossy_cobblestone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mossy_cobblestone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang2", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang3", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hard_magenta_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "detector_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "monster_egg", + "states": { + "monster_egg_stone_type": { + "type": "string", + "value": "stone" + } + }, + "version": 18153475 + }, + { + "name": "monster_egg", + "states": { + "monster_egg_stone_type": { + "type": "string", + "value": "cobblestone" + } + }, + "version": 18153475 + }, + { + "name": "monster_egg", + "states": { + "monster_egg_stone_type": { + "type": "string", + "value": "stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "monster_egg", + "states": { + "monster_egg_stone_type": { + "type": "string", + "value": "mossy_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "monster_egg", + "states": { + "monster_egg_stone_type": { + "type": "string", + "value": "cracked_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "monster_egg", + "states": { + "monster_egg_stone_type": { + "type": "string", + "value": "chiseled_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "blue_orchid", + "states": {}, + "version": 18153475 + }, + { + "name": "green_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_granite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "birch_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pink_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "dark_oak_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "pink_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pink_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cracked_deepslate_tiles", + "states": {}, + "version": 18153475 + }, + { + "name": "mangrove_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + }, + "stripped_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + }, + "stripped_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + }, + "stripped_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + }, + "stripped_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + }, + "stripped_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + }, + "stripped_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "red_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "red_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "red_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "cobblestone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "crimson_nylium", + "states": {}, + "version": 18153475 + }, + { + "name": "structure_void", + "states": { + "structure_void_type": { + "type": "string", + "value": "void" + } + }, + "version": 18153475 + }, + { + "name": "structure_void", + "states": { + "structure_void_type": { + "type": "string", + "value": "air" + } + }, + "version": 18153475 + }, + { + "name": "purple_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "hard_yellow_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "spruce_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "yellow_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "snow", + "states": {}, + "version": 18153475 + }, + { + "name": "sand", + "states": { + "sand_type": { + "type": "string", + "value": "normal" + } + }, + "version": 18153475 + }, + { + "name": "sand", + "states": { + "sand_type": { + "type": "string", + "value": "red" + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "stripped_mangrove_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_mangrove_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_mangrove_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "conduit", + "states": {}, + "version": 18153475 + }, + { + "name": "slime", + "states": {}, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 0 + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 1 + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 2 + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 3 + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 0 + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 1 + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 2 + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 3 + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 0 + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 1 + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 2 + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "bone_block", + "states": { + "deprecated": { + "type": "int", + "value": 3 + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 0 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frame", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "item_frame_map_bit": { + "type": "byte", + "value": 1 + }, + "item_frame_photo_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "spruce_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "spruce_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "lapis_block", + "states": {}, + "version": 18153475 + }, + { + "name": "coal_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "client_request_placeholder_block", + "states": {}, + "version": 18153475 + }, + { + "name": "redstone_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "bamboo_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "green_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "bubble_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "nether_brick_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "pink_tulip", + "states": {}, + "version": 18153475 + }, + { + "name": "oak_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "oak_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "pink_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "dead_tube_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "nether_wart_block", + "states": {}, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "crimson_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "crimson_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "small_dripleaf_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "small_dripleaf_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "small_dripleaf_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "small_dripleaf_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "small_dripleaf_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "small_dripleaf_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "small_dripleaf_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "small_dripleaf_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pink_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_grate", + "states": {}, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "spruce_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "acacia_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "acacia_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "acacia_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "basalt", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "basalt", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "basalt", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "hard_cyan_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "light_blue_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "lit_redstone_lamp", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_blue_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_purple_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "diamond_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_roots", + "states": {}, + "version": 18153475 + }, + { + "name": "magenta_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "sticky_piston", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "ender_chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "ender_chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "ender_chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "ender_chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "medium_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "down" + } + }, + "version": 18153475 + }, + { + "name": "medium_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "up" + } + }, + "version": 18153475 + }, + { + "name": "medium_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "medium_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "medium_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "medium_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "pink_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "warped_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "jungle_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jungle_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jungle_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "jungle_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "sculk_sensor", + "states": { + "sculk_sensor_phase": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sculk_sensor", + "states": { + "sculk_sensor_phase": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sculk_sensor", + "states": { + "sculk_sensor_phase": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "spruce_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frog_spawn", + "states": {}, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "stripped_cherry_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_cherry_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_cherry_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "crimson_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "acacia_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "fire_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "magenta_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "iron_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "honeycomb_block", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "quartz_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "daylight_detector_inverted", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "barrel", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chorus_flower", + "states": { + "age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chorus_flower", + "states": { + "age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chorus_flower", + "states": { + "age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chorus_flower", + "states": { + "age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chorus_flower", + "states": { + "age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "chorus_flower", + "states": { + "age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 0 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 1 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 2 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "coral_fan_hang", + "states": { + "coral_direction": { + "type": "int", + "value": 3 + }, + "coral_hang_type_bit": { + "type": "byte", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "orange_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "white_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "stripped_birch_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_birch_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_birch_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "cracked_nether_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "repeater_delay": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "repeater_delay": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "repeater_delay": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "repeater_delay": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "repeater_delay": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "repeater_delay": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "repeater_delay": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "repeater_delay": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "repeater_delay": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "repeater_delay": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "repeater_delay": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "repeater_delay": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "repeater_delay": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "repeater_delay": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "repeater_delay": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "powered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "repeater_delay": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hard_lime_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tiles", + "states": {}, + "version": 18153475 + }, + { + "name": "smooth_stone", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_light_gray_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "gray_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "white_tulip", + "states": {}, + "version": 18153475 + }, + { + "name": "lime_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "black_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "black_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_mushroom", + "states": {}, + "version": 18153475 + }, + { + "name": "gilded_blackstone", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_yellow_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "magenta_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "reserved6", + "states": {}, + "version": 18153475 + }, + { + "name": "cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "unknown", + "states": {}, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cherry_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "yellow_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "yellow_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sunflower", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sunflower", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 2 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 3 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 4 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 5 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 6 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 7 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 2 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 3 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 4 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 5 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 6 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 7 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 2 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 3 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 4 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 5 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 6 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 7 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 2 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 3 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 4 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 5 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 6 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "pink_petals", + "states": { + "growth": { + "type": "int", + "value": 7 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "infested_deepslate", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "infested_deepslate", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "infested_deepslate", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "soul_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "soul_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "soul_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "soul_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "soul_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "soul_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "podzol", + "states": {}, + "version": 18153475 + }, + { + "name": "copper_block", + "states": {}, + "version": 18153475 + }, + { + "name": "lit_redstone_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_tile_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deadbush", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_weathered_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "red_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cut_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "iron_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frosted_ice", + "states": { + "age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "frosted_ice", + "states": { + "age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "frosted_ice", + "states": { + "age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "frosted_ice", + "states": { + "age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "large_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "down" + } + }, + "version": 18153475 + }, + { + "name": "large_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "up" + } + }, + "version": 18153475 + }, + { + "name": "large_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "large_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "large_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "large_amethyst_bud", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_gravel", + "states": { + "brushed_progress": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_gravel", + "states": { + "brushed_progress": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_gravel", + "states": { + "brushed_progress": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_gravel", + "states": { + "brushed_progress": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_gravel", + "states": { + "brushed_progress": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_gravel", + "states": { + "brushed_progress": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_gravel", + "states": { + "brushed_progress": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "suspicious_gravel", + "states": { + "brushed_progress": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "flowing_water", + "states": { + "liquid_depth": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "brick_block", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 16 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 17 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 18 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 19 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 20 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 21 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 22 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 23 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 24 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines", + "states": { + "growing_plant_age": { + "type": "int", + "value": 25 + } + }, + "version": 18153475 + }, + { + "name": "magenta_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "iron_bars", + "states": {}, + "version": 18153475 + }, + { + "name": "white_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "stripped_oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "light_blue_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "white_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "melon_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "crimson_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "stripped_dark_oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_dark_oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_dark_oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "white_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "oak_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "purple_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "jukebox", + "states": {}, + "version": 18153475 + }, + { + "name": "stripped_cherry_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_cherry_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_cherry_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "rotation": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "rotation": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "rotation": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "rotation": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "rotation": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "rotation": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "rotation": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "rotation": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "rotation": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "rotation": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "rotation": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "rotation": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "rotation": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "rotation": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "rotation": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "rotation": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "rotation": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "rotation": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "rotation": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "rotation": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "rotation": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "rotation": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "rotation": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jigsaw", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "rotation": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "border_block", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "shroomlight", + "states": {}, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cornflower", + "states": {}, + "version": 18153475 + }, + { + "name": "chiseled_polished_blackstone", + "states": {}, + "version": 18153475 + }, + { + "name": "dark_oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_tile_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "chiseled_deepslate", + "states": {}, + "version": 18153475 + }, + { + "name": "cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "red_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "acacia_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_chiseled_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "mangrove_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "raw_copper_block", + "states": {}, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "horn_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "beetroot", + "states": { + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "beetroot", + "states": { + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "beetroot", + "states": { + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "beetroot", + "states": { + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "beetroot", + "states": { + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "beetroot", + "states": { + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "beetroot", + "states": { + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "beetroot", + "states": { + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "skull", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "skull", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "skull", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "skull", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "skull", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "skull", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "white_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "white_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "white_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "white_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "white_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "white_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "white_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "white_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "birch_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 0 + }, + "rail_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "golden_rail", + "states": { + "rail_data_bit": { + "type": "byte", + "value": 1 + }, + "rail_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cyan_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "darkoak_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "jungle_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "gray_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cyan_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cyan_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cyan_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cyan_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cyan_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cyan_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cracked_deepslate_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_grate", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_copper_grate", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_light_blue_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dirt_with_roots", + "states": {}, + "version": 18153475 + }, + { + "name": "coal_block", + "states": {}, + "version": 18153475 + }, + { + "name": "white_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "composter", + "states": { + "composter_fill_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "composter", + "states": { + "composter_fill_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "composter", + "states": { + "composter_fill_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "composter", + "states": { + "composter_fill_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "composter", + "states": { + "composter_fill_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "composter", + "states": { + "composter_fill_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "composter", + "states": { + "composter_fill_level": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "composter", + "states": { + "composter_fill_level": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "composter", + "states": { + "composter_fill_level": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "waxed_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "waxed_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 16 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 17 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 18 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 19 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 20 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 21 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 22 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 23 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 24 + } + }, + "version": 18153475 + }, + { + "name": "kelp", + "states": { + "kelp_age": { + "type": "int", + "value": 25 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "rose_bush", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "rose_bush", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "flowering_azalea", + "states": {}, + "version": 18153475 + }, + { + "name": "oxidized_cut_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "blue_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 16 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 17 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 18 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 19 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 20 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 21 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 22 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 23 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 24 + } + }, + "version": 18153475 + }, + { + "name": "weeping_vines", + "states": { + "weeping_vines_age": { + "type": "int", + "value": 25 + } + }, + "version": 18153475 + }, + { + "name": "chorus_plant", + "states": {}, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "water", + "states": { + "liquid_depth": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mud_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "repeater_delay": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "repeater_delay": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "repeater_delay": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "repeater_delay": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "repeater_delay": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "repeater_delay": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "repeater_delay": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "repeater_delay": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "repeater_delay": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "repeater_delay": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "repeater_delay": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "repeater_delay": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "repeater_delay": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "repeater_delay": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "repeater_delay": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_repeater", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "repeater_delay": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "smooth_red_sandstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "element_100", + "states": {}, + "version": 18153475 + }, + { + "name": "element_101", + "states": {}, + "version": 18153475 + }, + { + "name": "element_102", + "states": {}, + "version": 18153475 + }, + { + "name": "element_103", + "states": {}, + "version": 18153475 + }, + { + "name": "element_104", + "states": {}, + "version": 18153475 + }, + { + "name": "element_105", + "states": {}, + "version": 18153475 + }, + { + "name": "element_106", + "states": {}, + "version": 18153475 + }, + { + "name": "element_107", + "states": {}, + "version": 18153475 + }, + { + "name": "element_108", + "states": {}, + "version": 18153475 + }, + { + "name": "element_109", + "states": {}, + "version": 18153475 + }, + { + "name": "element_113", + "states": {}, + "version": 18153475 + }, + { + "name": "element_112", + "states": {}, + "version": 18153475 + }, + { + "name": "element_111", + "states": {}, + "version": 18153475 + }, + { + "name": "element_110", + "states": {}, + "version": 18153475 + }, + { + "name": "element_117", + "states": {}, + "version": 18153475 + }, + { + "name": "element_116", + "states": {}, + "version": 18153475 + }, + { + "name": "element_115", + "states": {}, + "version": 18153475 + }, + { + "name": "element_114", + "states": {}, + "version": 18153475 + }, + { + "name": "element_118", + "states": {}, + "version": 18153475 + }, + { + "name": "white_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "white_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "white_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "white_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "white_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "white_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "stripped_warped_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_warped_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_warped_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "moving_block", + "states": {}, + "version": 18153475 + }, + { + "name": "trapped_chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "trapped_chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "trapped_chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "trapped_chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brain_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 16 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 17 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 18 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 19 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 20 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 21 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 22 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 23 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 24 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 25 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 26 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 27 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 28 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 29 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 30 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 31 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 32 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 33 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 34 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 35 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 36 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 37 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 38 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 39 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 40 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 41 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 42 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 43 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 44 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 45 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 46 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 47 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 48 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 49 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 50 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 51 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 52 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 53 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 54 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 55 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 56 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 57 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 58 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 59 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 60 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 61 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 62 + } + }, + "version": 18153475 + }, + { + "name": "glow_lichen", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 63 + } + }, + "version": 18153475 + }, + { + "name": "wall_banner", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wall_banner", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wall_banner", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "wall_banner", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "wall_banner", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "wall_banner", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 16 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 17 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 18 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 19 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 20 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 21 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 22 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 23 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 24 + } + }, + "version": 18153475 + }, + { + "name": "twisting_vines", + "states": { + "twisting_vines_age": { + "type": "int", + "value": 25 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "acacia_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "acacia_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oak_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "soul_lantern", + "states": { + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "soul_lantern", + "states": { + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dirt", + "states": { + "dirt_type": { + "type": "string", + "value": "normal" + } + }, + "version": 18153475 + }, + { + "name": "dirt", + "states": { + "dirt_type": { + "type": "string", + "value": "coarse" + } + }, + "version": 18153475 + }, + { + "name": "blue_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "deny", + "states": {}, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "bee_nest", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "bubble_column", + "states": { + "drag_down": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bubble_column", + "states": { + "drag_down": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "light_blue_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "purpur" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_rough" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_dark" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_brick" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "mossy_cobblestone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "smooth_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "red_nether_brick" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "purpur" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_rough" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_dark" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_brick" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "mossy_cobblestone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "smooth_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "red_nether_brick" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "end_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "smooth_red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_andesite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "andesite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "diorite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_diorite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "granite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_granite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "end_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "smooth_red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_andesite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "andesite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "diorite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_diorite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "granite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_granite" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "mossy_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "smooth_quartz" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "stone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "cut_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "cut_red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "mossy_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "smooth_quartz" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "stone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "cut_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "cut_red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "soul_soil", + "states": {}, + "version": 18153475 + }, + { + "name": "soul_sand", + "states": {}, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_diorite", + "states": {}, + "version": 18153475 + }, + { + "name": "reinforced_deepslate", + "states": {}, + "version": 18153475 + }, + { + "name": "fletching_table", + "states": {}, + "version": 18153475 + }, + { + "name": "cherry_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "black_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "black_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "black_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "black_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "black_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "black_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "calibrated_sculk_sensor", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "sculk_sensor_phase": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stripped_acacia_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_acacia_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_acacia_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "warped_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "crafting_table", + "states": {}, + "version": 18153475 + }, + { + "name": "sea_pickle", + "states": { + "cluster_count": { + "type": "int", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sea_pickle", + "states": { + "cluster_count": { + "type": "int", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sea_pickle", + "states": { + "cluster_count": { + "type": "int", + "value": 2 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sea_pickle", + "states": { + "cluster_count": { + "type": "int", + "value": 3 + }, + "dead_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sea_pickle", + "states": { + "cluster_count": { + "type": "int", + "value": 0 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sea_pickle", + "states": { + "cluster_count": { + "type": "int", + "value": 1 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sea_pickle", + "states": { + "cluster_count": { + "type": "int", + "value": 2 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sea_pickle", + "states": { + "cluster_count": { + "type": "int", + "value": 3 + }, + "dead_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "cherry_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "brown_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brown_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brown_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brown_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brown_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brown_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brown_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brown_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brown_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mossy_stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mossy_stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mossy_stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mossy_stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mossy_stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mossy_stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mossy_stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mossy_stone_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "end_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "end_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "end_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "end_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "end_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "end_rod", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "crimson_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "crimson_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "crimson_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "green_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "tuff_brick_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "crimson_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "crimson_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "warped_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "warped_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "warped_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "warped_wart_block", + "states": {}, + "version": 18153475 + }, + { + "name": "light_gray_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "carrots", + "states": { + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "carrots", + "states": { + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "carrots", + "states": { + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "carrots", + "states": { + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "carrots", + "states": { + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "carrots", + "states": { + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "carrots", + "states": { + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "carrots", + "states": { + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "yellow_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "cyan_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "black_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dead_horn_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "grass_block", + "states": {}, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "direction": { + "type": "int", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "direction": { + "type": "int", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "direction": { + "type": "int", + "value": 2 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "direction": { + "type": "int", + "value": 3 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "direction": { + "type": "int", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "direction": { + "type": "int", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "direction": { + "type": "int", + "value": 2 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "direction": { + "type": "int", + "value": 3 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "direction": { + "type": "int", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "direction": { + "type": "int", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "direction": { + "type": "int", + "value": 2 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "direction": { + "type": "int", + "value": 3 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "direction": { + "type": "int", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "direction": { + "type": "int", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "direction": { + "type": "int", + "value": 2 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tripwire_hook", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "direction": { + "type": "int", + "value": 3 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 16 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 17 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 18 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 19 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 20 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 21 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 22 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 23 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 24 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_body_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 25 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hard_black_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "stripped_birch_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_birch_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_birch_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "tinted_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "none" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "unstable" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "partial_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "full_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "none" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "unstable" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "partial_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "full_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "none" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "unstable" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "partial_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "full_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "none" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "unstable" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "partial_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "full_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "none" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "unstable" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "partial_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "full_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "none" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "unstable" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "partial_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "full_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "none" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "unstable" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "partial_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 0 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "full_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "none" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "unstable" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "partial_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "big_dripleaf", + "states": { + "big_dripleaf_head": { + "type": "byte", + "value": 1 + }, + "big_dripleaf_tilt": { + "type": "string", + "value": "full_tilt" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lime_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "blue_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blue_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sweet_berry_bush", + "states": { + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sweet_berry_bush", + "states": { + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sweet_berry_bush", + "states": { + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "sweet_berry_bush", + "states": { + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "sweet_berry_bush", + "states": { + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "sweet_berry_bush", + "states": { + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "sweet_berry_bush", + "states": { + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "sweet_berry_bush", + "states": { + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "reeds", + "states": { + "age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "black_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "jungle_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "barrier", + "states": {}, + "version": 18153475 + }, + { + "name": "torchflower_crop", + "states": { + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "torchflower_crop", + "states": { + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "torchflower_crop", + "states": { + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "torchflower_crop", + "states": { + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "torchflower_crop", + "states": { + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "torchflower_crop", + "states": { + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "torchflower_crop", + "states": { + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "torchflower_crop", + "states": { + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "black_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "jungle_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "cherry_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "cherry_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "weathered_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "nether_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "nether_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "fire", + "states": { + "age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "fern", + "states": {}, + "version": 18153475 + }, + { + "name": "torchflower", + "states": {}, + "version": 18153475 + }, + { + "name": "end_portal_frame", + "states": { + "end_portal_eye_bit": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "end_portal_frame", + "states": { + "end_portal_eye_bit": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "end_portal_frame", + "states": { + "end_portal_eye_bit": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "end_portal_frame", + "states": { + "end_portal_eye_bit": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "end_portal_frame", + "states": { + "end_portal_eye_bit": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "end_portal_frame", + "states": { + "end_portal_eye_bit": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "end_portal_frame", + "states": { + "end_portal_eye_bit": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "end_portal_frame", + "states": { + "end_portal_eye_bit": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "prismarine", + "states": { + "prismarine_block_type": { + "type": "string", + "value": "default" + } + }, + "version": 18153475 + }, + { + "name": "prismarine", + "states": { + "prismarine_block_type": { + "type": "string", + "value": "dark" + } + }, + "version": 18153475 + }, + { + "name": "prismarine", + "states": { + "prismarine_block_type": { + "type": "string", + "value": "bricks" + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "magenta_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "black_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_gold_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "ancient_debris", + "states": {}, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "inactive" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "inactive" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "inactive" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "inactive" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "active" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "active" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "active" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "active" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "unlocking" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "unlocking" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "unlocking" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "unlocking" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "ejecting" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "ejecting" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "ejecting" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "ominous": { + "type": "byte", + "value": 0 + }, + "vault_state": { + "type": "string", + "value": "ejecting" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "inactive" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "inactive" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "inactive" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "inactive" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "active" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "active" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "active" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "active" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "unlocking" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "unlocking" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "unlocking" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "unlocking" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "ejecting" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "ejecting" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "ejecting" + } + }, + "version": 18153475 + }, + { + "name": "vault", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "ominous": { + "type": "byte", + "value": 1 + }, + "vault_state": { + "type": "string", + "value": "ejecting" + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "honey_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "honey_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "honey_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "beehive", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "honey_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "hard_orange_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "glass", + "states": {}, + "version": 18153475 + }, + { + "name": "wither_rose", + "states": {}, + "version": 18153475 + }, + { + "name": "exposed_cut_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_roots", + "states": {}, + "version": 18153475 + }, + { + "name": "yellow_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "yellow_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "yellow_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "yellow_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "yellow_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "yellow_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "yellow_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "yellow_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "acacia_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "acacia_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "acacia_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_mosaic_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "brown_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "cherry_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "cherry_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "bubble_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "orange_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "light_gray_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "acacia_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "tuff_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "blue_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "exposed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dead_fire_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "stone_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "stone_brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "crimson_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "crimson_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "crimson_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "crimson_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "stripped_spruce_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_spruce_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_spruce_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "pumpkin_stem", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "azalea_leaves_flowered", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "azalea_leaves_flowered", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "azalea_leaves_flowered", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "azalea_leaves_flowered", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hard_magenta_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "sticky_piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "sticky_piston_arm_collision", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "warped_nylium", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_emerald_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "acacia_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "quartz_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "output_lit_bit": { + "type": "byte", + "value": 0 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "unpowered_comparator", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "output_lit_bit": { + "type": "byte", + "value": 1 + }, + "output_subtract_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lime_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lime_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lime_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lime_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lime_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lime_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lime_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lime_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "structure_block", + "states": { + "structure_block_type": { + "type": "string", + "value": "data" + } + }, + "version": 18153475 + }, + { + "name": "structure_block", + "states": { + "structure_block_type": { + "type": "string", + "value": "save" + } + }, + "version": 18153475 + }, + { + "name": "structure_block", + "states": { + "structure_block_type": { + "type": "string", + "value": "load" + } + }, + "version": 18153475 + }, + { + "name": "structure_block", + "states": { + "structure_block_type": { + "type": "string", + "value": "corner" + } + }, + "version": 18153475 + }, + { + "name": "structure_block", + "states": { + "structure_block_type": { + "type": "string", + "value": "invalid" + } + }, + "version": 18153475 + }, + { + "name": "structure_block", + "states": { + "structure_block_type": { + "type": "string", + "value": "export" + } + }, + "version": 18153475 + }, + { + "name": "end_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "end_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "end_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "end_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "end_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "end_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "end_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "end_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "purple_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "target", + "states": {}, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "wooden_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hard_lime_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pearlescent_froglight", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "pearlescent_froglight", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "pearlescent_froglight", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "purpur" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_rough" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_dark" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "mossy_cobblestone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "smooth_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_2": { + "type": "string", + "value": "red_nether_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "purpur" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_rough" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_dark" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "prismarine_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "mossy_cobblestone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "smooth_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab2", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_2": { + "type": "string", + "value": "red_nether_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "end_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "smooth_red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_andesite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "andesite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "diorite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_diorite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "granite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_granite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "end_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "smooth_red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_andesite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "andesite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "diorite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_diorite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "granite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab3", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_3": { + "type": "string", + "value": "polished_granite" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "mossy_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "smooth_quartz" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "stone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "cut_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type_4": { + "type": "string", + "value": "cut_red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "mossy_stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "smooth_quartz" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "stone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "cut_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab4", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type_4": { + "type": "string", + "value": "cut_red_sandstone" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "tall_grass", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tall_grass", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "nether_sprouts", + "states": {}, + "version": 18153475 + }, + { + "name": "cyan_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "dead_horn_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "verdant_froglight", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "verdant_froglight", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "verdant_froglight", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "hard_gray_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "warped_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "warped_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "warped_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "warped_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "horn_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "horn_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "green_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "large_fern", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "large_fern", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stripped_crimson_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_crimson_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_crimson_hyphae", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 0 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 0 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 0 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 0 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 1 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 1 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 1 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 1 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 2 + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 2 + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 2 + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cocoa", + "states": { + "age": { + "type": "int", + "value": 2 + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "down_east_west" + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "east" + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "west" + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "south" + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "north" + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "up_north_south" + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "up_east_west" + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "down_north_south" + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "down_east_west" + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "east" + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "west" + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "south" + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "north" + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "up_north_south" + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "up_east_west" + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lever", + "states": { + "lever_direction": { + "type": "string", + "value": "down_north_south" + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "bamboo_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "hard_green_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "moss_block", + "states": {}, + "version": 18153475 + }, + { + "name": "purple_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "pink_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pink_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pink_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "pink_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "pink_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "pink_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "short_grass", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "stonebrick", + "states": { + "stone_brick_type": { + "type": "string", + "value": "default" + } + }, + "version": 18153475 + }, + { + "name": "stonebrick", + "states": { + "stone_brick_type": { + "type": "string", + "value": "mossy" + } + }, + "version": 18153475 + }, + { + "name": "stonebrick", + "states": { + "stone_brick_type": { + "type": "string", + "value": "cracked" + } + }, + "version": 18153475 + }, + { + "name": "stonebrick", + "states": { + "stone_brick_type": { + "type": "string", + "value": "chiseled" + } + }, + "version": 18153475 + }, + { + "name": "stonebrick", + "states": { + "stone_brick_type": { + "type": "string", + "value": "smooth" + } + }, + "version": 18153475 + }, + { + "name": "fire_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "fire_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "chain_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone", + "states": { + "sand_stone_type": { + "type": "string", + "value": "default" + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone", + "states": { + "sand_stone_type": { + "type": "string", + "value": "heiroglyphs" + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone", + "states": { + "sand_stone_type": { + "type": "string", + "value": "cut" + } + }, + "version": 18153475 + }, + { + "name": "red_sandstone", + "states": { + "sand_stone_type": { + "type": "string", + "value": "smooth" + } + }, + "version": 18153475 + }, + { + "name": "exposed_chiseled_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "exposed_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "red_nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "red_nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "red_nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "red_nether_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "green_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "green_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "green_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "green_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "green_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "green_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "jungle_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_redstone_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type": { + "type": "string", + "value": "smooth_stone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type": { + "type": "string", + "value": "sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type": { + "type": "string", + "value": "wood" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type": { + "type": "string", + "value": "cobblestone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type": { + "type": "string", + "value": "brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type": { + "type": "string", + "value": "stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type": { + "type": "string", + "value": "quartz" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + }, + "stone_slab_type": { + "type": "string", + "value": "nether_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type": { + "type": "string", + "value": "smooth_stone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type": { + "type": "string", + "value": "sandstone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type": { + "type": "string", + "value": "wood" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type": { + "type": "string", + "value": "cobblestone" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type": { + "type": "string", + "value": "brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type": { + "type": "string", + "value": "stone_brick" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type": { + "type": "string", + "value": "quartz" + } + }, + "version": 18153475 + }, + { + "name": "double_stone_block_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + }, + "stone_slab_type": { + "type": "string", + "value": "nether_brick" + } + }, + "version": 18153475 + }, + { + "name": "dead_brain_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "mangrove_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "oxidized_copper_grate", + "states": {}, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "undamaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "undamaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "undamaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "undamaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "slightly_damaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "slightly_damaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "slightly_damaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "slightly_damaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "very_damaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "very_damaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "very_damaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "very_damaged" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "broken" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "broken" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "broken" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "anvil", + "states": { + "damage": { + "type": "string", + "value": "broken" + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tuff_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "mangrove_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate", + "states": {}, + "version": 18153475 + }, + { + "name": "quartz_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "quartz_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "bookshelf", + "states": {}, + "version": 18153475 + }, + { + "name": "mud", + "states": {}, + "version": 18153475 + }, + { + "name": "lit_pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "lit_pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "lit_pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "lit_pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "ice", + "states": {}, + "version": 18153475 + }, + { + "name": "air", + "states": {}, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "head_piece_bit": { + "type": "byte", + "value": 0 + }, + "occupied_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "head_piece_bit": { + "type": "byte", + "value": 0 + }, + "occupied_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "head_piece_bit": { + "type": "byte", + "value": 0 + }, + "occupied_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "head_piece_bit": { + "type": "byte", + "value": 0 + }, + "occupied_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "head_piece_bit": { + "type": "byte", + "value": 0 + }, + "occupied_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "head_piece_bit": { + "type": "byte", + "value": 0 + }, + "occupied_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "head_piece_bit": { + "type": "byte", + "value": 0 + }, + "occupied_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "head_piece_bit": { + "type": "byte", + "value": 0 + }, + "occupied_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "head_piece_bit": { + "type": "byte", + "value": 1 + }, + "occupied_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "head_piece_bit": { + "type": "byte", + "value": 1 + }, + "occupied_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "head_piece_bit": { + "type": "byte", + "value": 1 + }, + "occupied_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "head_piece_bit": { + "type": "byte", + "value": 1 + }, + "occupied_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "head_piece_bit": { + "type": "byte", + "value": 1 + }, + "occupied_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "head_piece_bit": { + "type": "byte", + "value": 1 + }, + "occupied_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "head_piece_bit": { + "type": "byte", + "value": 1 + }, + "occupied_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bed", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "head_piece_bit": { + "type": "byte", + "value": 1 + }, + "occupied_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "black_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "tnt", + "states": { + "allow_underwater_bit": { + "type": "byte", + "value": 0 + }, + "explode_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tnt", + "states": { + "allow_underwater_bit": { + "type": "byte", + "value": 0 + }, + "explode_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "tnt", + "states": { + "allow_underwater_bit": { + "type": "byte", + "value": 1 + }, + "explode_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "tnt", + "states": { + "allow_underwater_bit": { + "type": "byte", + "value": 1 + }, + "explode_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "purple_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "purple_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "web", + "states": {}, + "version": 18153475 + }, + { + "name": "dead_tube_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dead_tube_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_diorite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "blue_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "orange_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "crying_obsidian", + "states": {}, + "version": 18153475 + }, + { + "name": "lime_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "dead_fire_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dead_fire_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "decorated_pot", + "states": { + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "decorated_pot", + "states": { + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "decorated_pot", + "states": { + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "decorated_pot", + "states": { + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "enchanting_table", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "waxed_exposed_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "orange_tulip", + "states": {}, + "version": 18153475 + }, + { + "name": "brown_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "azalea", + "states": {}, + "version": 18153475 + }, + { + "name": "mud_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "birch_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "birch_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "birch_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "birch_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "acacia_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "acacia_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "acacia_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "gray_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hopper", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "hard_red_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 0 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 1 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 2 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bell", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 3 + }, + "toggle_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lectern", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lectern", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lectern", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lectern", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lectern", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lectern", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lectern", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lectern", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "stripped_crimson_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_crimson_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_crimson_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "standing_banner", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "light_blue_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "jungle_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jungle_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "jungle_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "jungle_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "jungle_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "jungle_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 0 + }, + "propagule_stage": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 0 + }, + "propagule_stage": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 0 + }, + "propagule_stage": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 0 + }, + "propagule_stage": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 0 + }, + "propagule_stage": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 1 + }, + "propagule_stage": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 1 + }, + "propagule_stage": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 1 + }, + "propagule_stage": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 1 + }, + "propagule_stage": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_propagule", + "states": { + "hanging": { + "type": "byte", + "value": 1 + }, + "propagule_stage": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "cactus", + "states": { + "age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "budding_amethyst", + "states": {}, + "version": 18153475 + }, + { + "name": "sniffer_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "no_cracks" + } + }, + "version": 18153475 + }, + { + "name": "sniffer_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "cracked" + } + }, + "version": 18153475 + }, + { + "name": "sniffer_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "max_cracked" + } + }, + "version": 18153475 + }, + { + "name": "birch_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "birch_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "birch_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "birch_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "purple_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "purple_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "purple_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "purple_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "purple_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "purple_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "green_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "bedrock", + "states": { + "infiniburn_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bedrock", + "states": { + "infiniburn_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "spruce_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "blackstone_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "blue_ice", + "states": {}, + "version": 18153475 + }, + { + "name": "cyan_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_red_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_andesite_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "sculk", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_purple_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "netherrack", + "states": {}, + "version": 18153475 + }, + { + "name": "purple_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "purple_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "purple_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "purple_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "purple_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "purple_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "purple_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "purple_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "spruce_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "mangrove_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "orange_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "dead_horn_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dead_horn_coral_fan", + "states": { + "coral_fan_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lantern", + "states": { + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lantern", + "states": { + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_weathered_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "lit_blast_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "lit_blast_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "lit_blast_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "lit_blast_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "pink_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "light_blue_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "allow", + "states": {}, + "version": 18153475 + }, + { + "name": "dark_oak_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "chest", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "cherry_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + }, + "stripped_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + }, + "stripped_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + }, + "stripped_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + }, + "stripped_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + }, + "stripped_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + }, + "stripped_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chain", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "chain", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "chain", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "clay", + "states": {}, + "version": 18153475 + }, + { + "name": "cherry_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cherry_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cherry_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cherry_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cake", + "states": { + "bite_counter": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cake", + "states": { + "bite_counter": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cake", + "states": { + "bite_counter": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cake", + "states": { + "bite_counter": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cake", + "states": { + "bite_counter": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cake", + "states": { + "bite_counter": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cake", + "states": { + "bite_counter": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 0 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 1 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 2 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 3 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 4 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 5 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 6 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 7 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 8 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 9 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 10 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 11 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 12 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 13 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 14 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_hanging_sign", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + }, + "ground_sign_direction": { + "type": "int", + "value": 15 + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 16 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 17 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 18 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 19 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 20 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 21 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 22 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 23 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 24 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 25 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 26 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 27 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 28 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 29 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 30 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 31 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 32 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 33 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 34 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 35 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 36 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 37 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 38 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 39 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 40 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 41 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 42 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 43 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 44 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 45 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 46 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 47 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 48 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 49 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 50 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 51 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 52 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 53 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 54 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 55 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 56 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 57 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 58 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 59 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 60 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 61 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 62 + } + }, + "version": 18153475 + }, + { + "name": "sculk_vein", + "states": { + "multi_face_direction_bits": { + "type": "int", + "value": 63 + } + }, + "version": 18153475 + }, + { + "name": "dead_brain_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_coal_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "weathered_cut_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "warped_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "cracked_polished_blackstone_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "flowing_lava", + "states": { + "liquid_depth": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff", + "states": {}, + "version": 18153475 + }, + { + "name": "magenta_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_white_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "acacia_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "hard_cyan_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "lit_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "lit_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "lit_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "lit_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "chiseled_nether_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "warped_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "red_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "light_gray_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_lapis_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "dead_bubble_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "cherry_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "cherry_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "cherry_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "white_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "cyan_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_tuff_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "dragon_egg", + "states": {}, + "version": 18153475 + }, + { + "name": "blue_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "nether_brick", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_iron_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "element_1", + "states": {}, + "version": 18153475 + }, + { + "name": "element_0", + "states": {}, + "version": 18153475 + }, + { + "name": "element_3", + "states": {}, + "version": 18153475 + }, + { + "name": "element_2", + "states": {}, + "version": 18153475 + }, + { + "name": "element_5", + "states": {}, + "version": 18153475 + }, + { + "name": "element_4", + "states": {}, + "version": 18153475 + }, + { + "name": "element_7", + "states": {}, + "version": 18153475 + }, + { + "name": "element_6", + "states": {}, + "version": 18153475 + }, + { + "name": "element_9", + "states": {}, + "version": 18153475 + }, + { + "name": "element_8", + "states": {}, + "version": 18153475 + }, + { + "name": "oxeye_daisy", + "states": {}, + "version": 18153475 + }, + { + "name": "camera", + "states": {}, + "version": 18153475 + }, + { + "name": "wheat", + "states": { + "growth": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wheat", + "states": { + "growth": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wheat", + "states": { + "growth": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "wheat", + "states": { + "growth": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "wheat", + "states": { + "growth": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "wheat", + "states": { + "growth": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "wheat", + "states": { + "growth": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "wheat", + "states": { + "growth": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "waxed_cut_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "compound_creator" + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "compound_creator" + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "compound_creator" + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "compound_creator" + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "material_reducer" + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "material_reducer" + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "material_reducer" + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "material_reducer" + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "element_constructor" + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "element_constructor" + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "element_constructor" + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "element_constructor" + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "lab_table" + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "lab_table" + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "lab_table" + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "chemistry_table", + "states": { + "chemistry_table_type": { + "type": "string", + "value": "lab_table" + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "heavy_core", + "states": {}, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "lilac", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lilac", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spore_blossom", + "states": {}, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "crimson_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "darkoak_standing_sign", + "states": { + "ground_sign_direction": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "weathered_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "weathered_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "emerald_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "brown_mushroom_block", + "states": { + "huge_mushroom_bits": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "gray_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "petrified_oak_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "petrified_oak_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "gray_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "pink_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pink_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pink_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pink_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pink_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pink_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pink_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pink_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "purple_shulker_box", + "states": {}, + "version": 18153475 + }, + { + "name": "carved_pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "carved_pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "carved_pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "carved_pumpkin", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dropper", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "spruce_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "spruce_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "spruce_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "spruce_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "stripped_warped_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_warped_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_warped_stem", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "tip" + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "frustum" + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "middle" + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "base" + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "merge" + }, + "hanging": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "tip" + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "frustum" + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "middle" + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "base" + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "pointed_dripstone", + "states": { + "dripstone_thickness": { + "type": "string", + "value": "merge" + }, + "hanging": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "red_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "netherreactor", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "deepslate_brick_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "dark_prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "dark_prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "dark_prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "dark_prismarine_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "chiseled_tuff_bricks", + "states": {}, + "version": 18153475 + }, + { + "name": "light_blue_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "red_tulip", + "states": {}, + "version": 18153475 + }, + { + "name": "chemical_heat", + "states": {}, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "disarmed_bit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + }, + "suspended_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "disarmed_bit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + }, + "suspended_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "disarmed_bit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + }, + "suspended_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "disarmed_bit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + }, + "suspended_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "disarmed_bit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + }, + "suspended_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "disarmed_bit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + }, + "suspended_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "disarmed_bit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + }, + "suspended_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "disarmed_bit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + }, + "suspended_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "disarmed_bit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + }, + "suspended_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "disarmed_bit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + }, + "suspended_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "disarmed_bit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + }, + "suspended_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 0 + }, + "disarmed_bit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + }, + "suspended_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "disarmed_bit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + }, + "suspended_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "disarmed_bit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + }, + "suspended_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "disarmed_bit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + }, + "suspended_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trip_wire", + "states": { + "attached_bit": { + "type": "byte", + "value": 1 + }, + "disarmed_bit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + }, + "suspended_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "water" + }, + "fill_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "water" + }, + "fill_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "water" + }, + "fill_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "water" + }, + "fill_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "water" + }, + "fill_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "water" + }, + "fill_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "water" + }, + "fill_level": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "lava" + }, + "fill_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "lava" + }, + "fill_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "lava" + }, + "fill_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "lava" + }, + "fill_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "lava" + }, + "fill_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "lava" + }, + "fill_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "lava" + }, + "fill_level": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "powder_snow" + }, + "fill_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "powder_snow" + }, + "fill_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "powder_snow" + }, + "fill_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "powder_snow" + }, + "fill_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "powder_snow" + }, + "fill_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "powder_snow" + }, + "fill_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cauldron", + "states": { + "cauldron_liquid": { + "type": "string", + "value": "powder_snow" + }, + "fill_level": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 16 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 17 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 18 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 19 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 20 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 21 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 22 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 23 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 24 + } + }, + "version": 18153475 + }, + { + "name": "cave_vines_head_with_berries", + "states": { + "growing_plant_age": { + "type": "int", + "value": 25 + } + }, + "version": 18153475 + }, + { + "name": "tube_coral_block", + "states": {}, + "version": 18153475 + }, + { + "name": "birch_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dark_oak_trapdoor", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upside_down_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_bp", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 0 + }, + "torch_facing_direction": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "colored_torch_rg", + "states": { + "color_bit": { + "type": "byte", + "value": 1 + }, + "torch_facing_direction": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "hard_pink_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "orange_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "brick_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "oak_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "stripped_oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_oak_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "smooth_stone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "smooth_stone_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "polished_andesite", + "states": {}, + "version": 18153475 + }, + { + "name": "sea_lantern", + "states": {}, + "version": 18153475 + }, + { + "name": "brewing_stand", + "states": { + "brewing_stand_slot_a_bit": { + "type": "byte", + "value": 0 + }, + "brewing_stand_slot_b_bit": { + "type": "byte", + "value": 0 + }, + "brewing_stand_slot_c_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brewing_stand", + "states": { + "brewing_stand_slot_a_bit": { + "type": "byte", + "value": 1 + }, + "brewing_stand_slot_b_bit": { + "type": "byte", + "value": 0 + }, + "brewing_stand_slot_c_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brewing_stand", + "states": { + "brewing_stand_slot_a_bit": { + "type": "byte", + "value": 0 + }, + "brewing_stand_slot_b_bit": { + "type": "byte", + "value": 1 + }, + "brewing_stand_slot_c_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brewing_stand", + "states": { + "brewing_stand_slot_a_bit": { + "type": "byte", + "value": 1 + }, + "brewing_stand_slot_b_bit": { + "type": "byte", + "value": 1 + }, + "brewing_stand_slot_c_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "brewing_stand", + "states": { + "brewing_stand_slot_a_bit": { + "type": "byte", + "value": 0 + }, + "brewing_stand_slot_b_bit": { + "type": "byte", + "value": 0 + }, + "brewing_stand_slot_c_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brewing_stand", + "states": { + "brewing_stand_slot_a_bit": { + "type": "byte", + "value": 1 + }, + "brewing_stand_slot_b_bit": { + "type": "byte", + "value": 0 + }, + "brewing_stand_slot_c_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brewing_stand", + "states": { + "brewing_stand_slot_a_bit": { + "type": "byte", + "value": 0 + }, + "brewing_stand_slot_b_bit": { + "type": "byte", + "value": 1 + }, + "brewing_stand_slot_c_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brewing_stand", + "states": { + "brewing_stand_slot_a_bit": { + "type": "byte", + "value": 1 + }, + "brewing_stand_slot_b_bit": { + "type": "byte", + "value": 1 + }, + "brewing_stand_slot_c_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "bamboo_sapling", + "states": { + "age_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 0 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper_bulb", + "states": { + "lit": { + "type": "byte", + "value": 1 + }, + "powered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "blast_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "blast_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "blast_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "blast_furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "crimson_roots", + "states": {}, + "version": 18153475 + }, + { + "name": "acacia_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "acacia_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "stonecutter_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "stonecutter_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "stonecutter_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "stonecutter_block", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "yellow_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "white_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "white_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lime_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "end_portal", + "states": {}, + "version": 18153475 + }, + { + "name": "yellow_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "jungle_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "jungle_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "spruce_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "spruce_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "spruce_wood", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "blackstone", + "states": {}, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "lit_deepslate_redstone_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "element_10", + "states": {}, + "version": 18153475 + }, + { + "name": "element_11", + "states": {}, + "version": 18153475 + }, + { + "name": "element_12", + "states": {}, + "version": 18153475 + }, + { + "name": "element_13", + "states": {}, + "version": 18153475 + }, + { + "name": "element_14", + "states": {}, + "version": 18153475 + }, + { + "name": "element_15", + "states": {}, + "version": 18153475 + }, + { + "name": "element_16", + "states": {}, + "version": 18153475 + }, + { + "name": "element_17", + "states": {}, + "version": 18153475 + }, + { + "name": "element_18", + "states": {}, + "version": 18153475 + }, + { + "name": "element_19", + "states": {}, + "version": 18153475 + }, + { + "name": "element_36", + "states": {}, + "version": 18153475 + }, + { + "name": "element_37", + "states": {}, + "version": 18153475 + }, + { + "name": "element_34", + "states": {}, + "version": 18153475 + }, + { + "name": "element_35", + "states": {}, + "version": 18153475 + }, + { + "name": "element_32", + "states": {}, + "version": 18153475 + }, + { + "name": "element_33", + "states": {}, + "version": 18153475 + }, + { + "name": "element_30", + "states": {}, + "version": 18153475 + }, + { + "name": "element_31", + "states": {}, + "version": 18153475 + }, + { + "name": "element_38", + "states": {}, + "version": 18153475 + }, + { + "name": "element_39", + "states": {}, + "version": 18153475 + }, + { + "name": "element_29", + "states": {}, + "version": 18153475 + }, + { + "name": "element_28", + "states": {}, + "version": 18153475 + }, + { + "name": "element_21", + "states": {}, + "version": 18153475 + }, + { + "name": "element_20", + "states": {}, + "version": 18153475 + }, + { + "name": "element_23", + "states": {}, + "version": 18153475 + }, + { + "name": "element_22", + "states": {}, + "version": 18153475 + }, + { + "name": "element_25", + "states": {}, + "version": 18153475 + }, + { + "name": "element_24", + "states": {}, + "version": 18153475 + }, + { + "name": "element_27", + "states": {}, + "version": 18153475 + }, + { + "name": "element_26", + "states": {}, + "version": 18153475 + }, + { + "name": "element_58", + "states": {}, + "version": 18153475 + }, + { + "name": "element_59", + "states": {}, + "version": 18153475 + }, + { + "name": "element_54", + "states": {}, + "version": 18153475 + }, + { + "name": "element_55", + "states": {}, + "version": 18153475 + }, + { + "name": "element_56", + "states": {}, + "version": 18153475 + }, + { + "name": "element_57", + "states": {}, + "version": 18153475 + }, + { + "name": "element_50", + "states": {}, + "version": 18153475 + }, + { + "name": "element_51", + "states": {}, + "version": 18153475 + }, + { + "name": "element_52", + "states": {}, + "version": 18153475 + }, + { + "name": "element_53", + "states": {}, + "version": 18153475 + }, + { + "name": "element_49", + "states": {}, + "version": 18153475 + }, + { + "name": "element_48", + "states": {}, + "version": 18153475 + }, + { + "name": "element_47", + "states": {}, + "version": 18153475 + }, + { + "name": "element_46", + "states": {}, + "version": 18153475 + }, + { + "name": "element_45", + "states": {}, + "version": 18153475 + }, + { + "name": "element_44", + "states": {}, + "version": 18153475 + }, + { + "name": "element_43", + "states": {}, + "version": 18153475 + }, + { + "name": "element_42", + "states": {}, + "version": 18153475 + }, + { + "name": "element_41", + "states": {}, + "version": 18153475 + }, + { + "name": "element_40", + "states": {}, + "version": 18153475 + }, + { + "name": "element_72", + "states": {}, + "version": 18153475 + }, + { + "name": "element_73", + "states": {}, + "version": 18153475 + }, + { + "name": "element_70", + "states": {}, + "version": 18153475 + }, + { + "name": "element_71", + "states": {}, + "version": 18153475 + }, + { + "name": "element_76", + "states": {}, + "version": 18153475 + }, + { + "name": "element_77", + "states": {}, + "version": 18153475 + }, + { + "name": "element_74", + "states": {}, + "version": 18153475 + }, + { + "name": "element_75", + "states": {}, + "version": 18153475 + }, + { + "name": "element_78", + "states": {}, + "version": 18153475 + }, + { + "name": "element_79", + "states": {}, + "version": 18153475 + }, + { + "name": "element_65", + "states": {}, + "version": 18153475 + }, + { + "name": "element_64", + "states": {}, + "version": 18153475 + }, + { + "name": "element_67", + "states": {}, + "version": 18153475 + }, + { + "name": "element_66", + "states": {}, + "version": 18153475 + }, + { + "name": "element_61", + "states": {}, + "version": 18153475 + }, + { + "name": "element_60", + "states": {}, + "version": 18153475 + }, + { + "name": "element_63", + "states": {}, + "version": 18153475 + }, + { + "name": "element_62", + "states": {}, + "version": 18153475 + }, + { + "name": "element_69", + "states": {}, + "version": 18153475 + }, + { + "name": "element_68", + "states": {}, + "version": 18153475 + }, + { + "name": "element_98", + "states": {}, + "version": 18153475 + }, + { + "name": "element_99", + "states": {}, + "version": 18153475 + }, + { + "name": "element_90", + "states": {}, + "version": 18153475 + }, + { + "name": "element_91", + "states": {}, + "version": 18153475 + }, + { + "name": "element_92", + "states": {}, + "version": 18153475 + }, + { + "name": "element_93", + "states": {}, + "version": 18153475 + }, + { + "name": "element_94", + "states": {}, + "version": 18153475 + }, + { + "name": "element_95", + "states": {}, + "version": 18153475 + }, + { + "name": "element_96", + "states": {}, + "version": 18153475 + }, + { + "name": "element_97", + "states": {}, + "version": 18153475 + }, + { + "name": "element_89", + "states": {}, + "version": 18153475 + }, + { + "name": "element_88", + "states": {}, + "version": 18153475 + }, + { + "name": "element_83", + "states": {}, + "version": 18153475 + }, + { + "name": "element_82", + "states": {}, + "version": 18153475 + }, + { + "name": "element_81", + "states": {}, + "version": 18153475 + }, + { + "name": "element_80", + "states": {}, + "version": 18153475 + }, + { + "name": "element_87", + "states": {}, + "version": 18153475 + }, + { + "name": "element_86", + "states": {}, + "version": 18153475 + }, + { + "name": "element_85", + "states": {}, + "version": 18153475 + }, + { + "name": "element_84", + "states": {}, + "version": 18153475 + }, + { + "name": "lit_smoker", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "lit_smoker", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "lit_smoker", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "lit_smoker", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "lapis_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "red_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "pink_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "smooth_quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "smooth_quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "smooth_quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "smooth_quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "smooth_quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "smooth_quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "smooth_quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "smooth_quartz_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "red_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "red_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "azalea_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "azalea_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 0 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "azalea_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "azalea_leaves", + "states": { + "persistent_bit": { + "type": "byte", + "value": 1 + }, + "update_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "default" + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "chiseled" + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "lines" + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "smooth" + }, + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "default" + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "chiseled" + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "lines" + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "smooth" + }, + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "default" + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "chiseled" + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "lines" + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "purpur_block", + "states": { + "chisel_type": { + "type": "string", + "value": "smooth" + }, + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "cherry_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "cherry_wall_sign", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle", + "states": { + "candles": { + "type": "int", + "value": 0 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle", + "states": { + "candles": { + "type": "int", + "value": 1 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle", + "states": { + "candles": { + "type": "int", + "value": 2 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cyan_candle", + "states": { + "candles": { + "type": "int", + "value": 3 + }, + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "repeating_command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "nether_wart", + "states": { + "age": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "nether_wart", + "states": { + "age": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "nether_wart", + "states": { + "age": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "nether_wart", + "states": { + "age": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "purple_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_oxidized_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_double_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "crimson_fungus", + "states": {}, + "version": 18153475 + }, + { + "name": "cherry_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "polished_deepslate", + "states": {}, + "version": 18153475 + }, + { + "name": "tuff_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "tuff_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "purpur_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "purpur_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "purpur_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "purpur_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 0 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "purpur_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "purpur_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "purpur_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "purpur_stairs", + "states": { + "upside_down_bit": { + "type": "byte", + "value": 1 + }, + "weirdo_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "tube_coral", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "portal", + "states": { + "portal_axis": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "portal", + "states": { + "portal_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "portal", + "states": { + "portal_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "birch_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "peony", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "peony", + "states": { + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "command_block", + "states": { + "conditional_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 0 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "polished_blackstone_button", + "states": { + "button_pressed_bit": { + "type": "byte", + "value": 1 + }, + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "down_east" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "down_north" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "down_south" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "down_west" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "up_east" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "up_north" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "up_south" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "up_west" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "west_up" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "east_up" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "north_up" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "south_up" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "down_east" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "down_north" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "down_south" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "down_west" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "up_east" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "up_north" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "up_south" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "up_west" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "west_up" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "east_up" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "north_up" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 0 + }, + "orientation": { + "type": "string", + "value": "south_up" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "down_east" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "down_north" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "down_south" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "down_west" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "up_east" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "up_north" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "up_south" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "up_west" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "west_up" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "east_up" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "north_up" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "south_up" + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "down_east" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "down_north" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "down_south" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "down_west" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "up_east" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "up_north" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "up_south" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "up_west" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "west_up" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "east_up" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "north_up" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crafter", + "states": { + "crafting": { + "type": "byte", + "value": 1 + }, + "orientation": { + "type": "string", + "value": "south_up" + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "spruce_planks", + "states": {}, + "version": 18153475 + }, + { + "name": "furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "furnace", + "states": { + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "info_update2", + "states": {}, + "version": 18153475 + }, + { + "name": "amethyst_cluster", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "down" + } + }, + "version": 18153475 + }, + { + "name": "amethyst_cluster", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "up" + } + }, + "version": 18153475 + }, + { + "name": "amethyst_cluster", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "amethyst_cluster", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "amethyst_cluster", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "amethyst_cluster", + "states": { + "minecraft:block_face": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "waxed_chiseled_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "waxed_cut_copper_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "polished_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dried_kelp_block", + "states": {}, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "light_block", + "states": { + "block_light_level": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "hard_light_gray_stained_glass", + "states": {}, + "version": 18153475 + }, + { + "name": "crimson_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "chiseled_tuff", + "states": {}, + "version": 18153475 + }, + { + "name": "lime_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "no_cracks" + }, + "turtle_egg_count": { + "type": "string", + "value": "one_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "no_cracks" + }, + "turtle_egg_count": { + "type": "string", + "value": "two_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "no_cracks" + }, + "turtle_egg_count": { + "type": "string", + "value": "three_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "no_cracks" + }, + "turtle_egg_count": { + "type": "string", + "value": "four_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "cracked" + }, + "turtle_egg_count": { + "type": "string", + "value": "one_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "cracked" + }, + "turtle_egg_count": { + "type": "string", + "value": "two_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "cracked" + }, + "turtle_egg_count": { + "type": "string", + "value": "three_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "cracked" + }, + "turtle_egg_count": { + "type": "string", + "value": "four_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "max_cracked" + }, + "turtle_egg_count": { + "type": "string", + "value": "one_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "max_cracked" + }, + "turtle_egg_count": { + "type": "string", + "value": "two_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "max_cracked" + }, + "turtle_egg_count": { + "type": "string", + "value": "three_egg" + } + }, + "version": 18153475 + }, + { + "name": "turtle_egg", + "states": { + "cracked_state": { + "type": "string", + "value": "max_cracked" + }, + "turtle_egg_count": { + "type": "string", + "value": "four_egg" + } + }, + "version": 18153475 + }, + { + "name": "magma", + "states": {}, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "triggered_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "dispenser", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + }, + "triggered_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "brown_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "deepslate_diamond_ore", + "states": {}, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "standing" + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "hanging" + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "side" + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "grindstone", + "states": { + "attachment": { + "type": "string", + "value": "multiple" + }, + "direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "light_gray_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "soul_campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "soul_campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "soul_campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "soul_campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 0 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "soul_campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "soul_campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "soul_campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "soul_campfire", + "states": { + "extinguished": { + "type": "byte", + "value": 1 + }, + "minecraft:cardinal_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "wooden_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "birch_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "lime_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "lime_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "waxed_oxidized_copper_grate", + "states": {}, + "version": 18153475 + }, + { + "name": "birch_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "bottom" + } + }, + "version": 18153475 + }, + { + "name": "birch_double_slab", + "states": { + "minecraft:vertical_half": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "white_concrete", + "states": {}, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 0 + }, + "trial_spawner_state": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 0 + }, + "trial_spawner_state": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 0 + }, + "trial_spawner_state": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 0 + }, + "trial_spawner_state": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 0 + }, + "trial_spawner_state": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 0 + }, + "trial_spawner_state": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 1 + }, + "trial_spawner_state": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 1 + }, + "trial_spawner_state": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 1 + }, + "trial_spawner_state": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 1 + }, + "trial_spawner_state": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 1 + }, + "trial_spawner_state": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "trial_spawner", + "states": { + "ominous": { + "type": "byte", + "value": 1 + }, + "trial_spawner_state": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "acacia_fence", + "states": {}, + "version": 18153475 + }, + { + "name": "grass_path", + "states": {}, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "none" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "short" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "none" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "short" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "none" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "short" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "none" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "short" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cobbled_deepslate_wall", + "states": { + "wall_connection_type_east": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_north": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_south": { + "type": "string", + "value": "tall" + }, + "wall_connection_type_west": { + "type": "string", + "value": "tall" + }, + "wall_post_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "orange_concrete_powder", + "states": {}, + "version": 18153475 + }, + { + "name": "orange_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "orange_candle_cake", + "states": { + "lit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "weathered_copper", + "states": {}, + "version": 18153475 + }, + { + "name": "unlit_redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "unknown" + } + }, + "version": 18153475 + }, + { + "name": "unlit_redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "west" + } + }, + "version": 18153475 + }, + { + "name": "unlit_redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "east" + } + }, + "version": 18153475 + }, + { + "name": "unlit_redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "north" + } + }, + "version": 18153475 + }, + { + "name": "unlit_redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "south" + } + }, + "version": 18153475 + }, + { + "name": "unlit_redstone_torch", + "states": { + "torch_facing_direction": { + "type": "string", + "value": "top" + } + }, + "version": 18153475 + }, + { + "name": "lime_terracotta", + "states": {}, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "cherry_fence_gate", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "in_wall_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "gray_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "gray_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "gray_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "gray_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "gray_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "gray_glazed_terracotta", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "lodestone", + "states": {}, + "version": 18153475 + }, + { + "name": "bamboo_mosaic", + "states": {}, + "version": 18153475 + }, + { + "name": "hard_blue_stained_glass_pane", + "states": {}, + "version": 18153475 + }, + { + "name": "raw_iron_block", + "states": {}, + "version": 18153475 + }, + { + "name": "light_gray_carpet", + "states": {}, + "version": 18153475 + }, + { + "name": "purple_wool", + "states": {}, + "version": 18153475 + }, + { + "name": "iron_block", + "states": {}, + "version": 18153475 + }, + { + "name": "ladder", + "states": { + "facing_direction": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "ladder", + "states": { + "facing_direction": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "ladder", + "states": { + "facing_direction": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "ladder", + "states": { + "facing_direction": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "ladder", + "states": { + "facing_direction": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "ladder", + "states": { + "facing_direction": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 2 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 3 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 4 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 5 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 6 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 7 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 8 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 9 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 10 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 11 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 12 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 13 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 14 + } + }, + "version": 18153475 + }, + { + "name": "crimson_pressure_plate", + "states": { + "redstone_signal": { + "type": "int", + "value": 15 + } + }, + "version": 18153475 + }, + { + "name": "stripped_mangrove_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "y" + } + }, + "version": 18153475 + }, + { + "name": "stripped_mangrove_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "x" + } + }, + "version": 18153475 + }, + { + "name": "stripped_mangrove_log", + "states": { + "pillar_axis": { + "type": "string", + "value": "z" + } + }, + "version": 18153475 + }, + { + "name": "gravel", + "states": {}, + "version": 18153475 + }, + { + "name": "cartography_table", + "states": {}, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 0 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 0 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 0 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 0 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 1 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 2 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + }, + { + "name": "oxidized_copper_door", + "states": { + "direction": { + "type": "int", + "value": 3 + }, + "door_hinge_bit": { + "type": "byte", + "value": 1 + }, + "open_bit": { + "type": "byte", + "value": 1 + }, + "upper_block_bit": { + "type": "byte", + "value": 1 + } + }, + "version": 18153475 + } +] \ No newline at end of file diff --git a/data/bedrock/1.21.0/blocks.json b/data/bedrock/1.21.0/blocks.json new file mode 100644 index 000000000..58d2e689e --- /dev/null +++ b/data/bedrock/1.21.0/blocks.json @@ -0,0 +1,19826 @@ +[ + { + "id": 0, + "name": "air", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11884, + "minStateId": 11884, + "maxStateId": 11884, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1, + "name": "stone", + "displayName": "Stone", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1798, + "minStateId": 1798, + "maxStateId": 1798, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [35], + "boundingBox": "block" + }, + { + "id": 2, + "name": "granite", + "displayName": "Granite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 76, + "minStateId": 76, + "maxStateId": 76, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [2], + "boundingBox": "block" + }, + { + "id": 3, + "name": "polished_granite", + "displayName": "Polished Granite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1169, + "minStateId": 1169, + "maxStateId": 1169, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [3], + "boundingBox": "block" + }, + { + "id": 4, + "name": "diorite", + "displayName": "Diorite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 142, + "minStateId": 142, + "maxStateId": 142, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [4], + "boundingBox": "block" + }, + { + "id": 5, + "name": "polished_diorite", + "displayName": "Polished Diorite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9999, + "minStateId": 9999, + "maxStateId": 9999, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [5], + "boundingBox": "block" + }, + { + "id": 6, + "name": "andesite", + "displayName": "Andesite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1796, + "minStateId": 1796, + "maxStateId": 1796, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [6], + "boundingBox": "block" + }, + { + "id": 7, + "name": "polished_andesite", + "displayName": "Polished Andesite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13262, + "minStateId": 13262, + "maxStateId": 13262, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [7], + "boundingBox": "block" + }, + { + "id": 8, + "name": "grass_block", + "displayName": "Grass Block", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10571, + "minStateId": 10571, + "maxStateId": 10571, + "drops": [28], + "boundingBox": "block" + }, + { + "id": 9, + "name": "dirt", + "displayName": "Dirt", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9532, + "minStateId": 9532, + "maxStateId": 9533, + "drops": [28], + "boundingBox": "block" + }, + { + "id": 11, + "name": "podzol", + "displayName": "Podzol", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7937, + "minStateId": 7937, + "maxStateId": 7937, + "drops": [28], + "boundingBox": "block" + }, + { + "id": 12, + "name": "cobblestone", + "displayName": "Cobblestone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5992, + "minStateId": 5992, + "maxStateId": 5992, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [35], + "boundingBox": "block" + }, + { + "id": 13, + "name": "oak_planks", + "displayName": "Oak Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13256, + "minStateId": 13256, + "maxStateId": 13256, + "drops": [36], + "boundingBox": "block" + }, + { + "id": 14, + "name": "spruce_planks", + "displayName": "Spruce Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13612, + "minStateId": 13612, + "maxStateId": 13612, + "drops": [37], + "boundingBox": "block" + }, + { + "id": 15, + "name": "birch_planks", + "displayName": "Birch Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9075, + "minStateId": 9075, + "maxStateId": 9075, + "drops": [38], + "boundingBox": "block" + }, + { + "id": 16, + "name": "jungle_planks", + "displayName": "Jungle Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11816, + "minStateId": 11816, + "maxStateId": 11816, + "drops": [39], + "boundingBox": "block" + }, + { + "id": 17, + "name": "acacia_planks", + "displayName": "Acacia Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7280, + "minStateId": 7280, + "maxStateId": 7280, + "drops": [40], + "boundingBox": "block" + }, + { + "id": 18, + "name": "cherry_planks", + "displayName": "Cherry Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13478, + "minStateId": 13478, + "maxStateId": 13478, + "drops": [41], + "boundingBox": "block" + }, + { + "id": 19, + "name": "dark_oak_planks", + "displayName": "Dark Oak Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5928, + "minStateId": 5928, + "maxStateId": 5928, + "drops": [42], + "boundingBox": "block" + }, + { + "id": 20, + "name": "mangrove_planks", + "displayName": "Mangrove Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2426, + "minStateId": 2426, + "maxStateId": 2426, + "drops": [43], + "boundingBox": "block" + }, + { + "id": 21, + "name": "bamboo_planks", + "displayName": "Bamboo Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9397, + "minStateId": 9397, + "maxStateId": 9397, + "drops": [44], + "boundingBox": "block" + }, + { + "id": 22, + "name": "bamboo_mosaic", + "displayName": "Bamboo Mosaic", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14095, + "minStateId": 14095, + "maxStateId": 14095, + "drops": [47], + "boundingBox": "block" + }, + { + "id": 23, + "name": "oak_sapling", + "displayName": "Oak Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1786, + "minStateId": 1786, + "maxStateId": 1787, + "drops": [48], + "boundingBox": "empty" + }, + { + "id": 24, + "name": "spruce_sapling", + "displayName": "Spruce Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6985, + "minStateId": 6985, + "maxStateId": 6986, + "drops": [49], + "boundingBox": "empty" + }, + { + "id": 25, + "name": "birch_sapling", + "displayName": "Birch Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13209, + "minStateId": 13209, + "maxStateId": 13210, + "drops": [50], + "boundingBox": "empty" + }, + { + "id": 26, + "name": "jungle_sapling", + "displayName": "Jungle Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11113, + "minStateId": 11113, + "maxStateId": 11114, + "drops": [51], + "boundingBox": "empty" + }, + { + "id": 27, + "name": "acacia_sapling", + "displayName": "Acacia Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11479, + "minStateId": 11479, + "maxStateId": 11480, + "drops": [52], + "boundingBox": "empty" + }, + { + "id": 28, + "name": "cherry_sapling", + "displayName": "Cherry Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12946, + "minStateId": 12946, + "maxStateId": 12947, + "drops": [53], + "boundingBox": "empty" + }, + { + "id": 29, + "name": "dark_oak_sapling", + "displayName": "Dark Oak Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1156, + "minStateId": 1156, + "maxStateId": 1157, + "drops": [54], + "boundingBox": "empty" + }, + { + "id": 30, + "name": "mangrove_propagule", + "displayName": "Mangrove Propagule", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12195, + "minStateId": 12195, + "maxStateId": 12204, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 31, + "name": "bedrock", + "displayName": "Bedrock", + "hardness": -1, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12240, + "minStateId": 12240, + "maxStateId": 12241, + "drops": [], + "boundingBox": "block" + }, + { + "id": 32, + "name": "flowing_water", + "displayName": "Water", + "hardness": 100, + "resistance": 100, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 8076, + "minStateId": 8076, + "maxStateId": 8091, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 8000, + "name": "water", + "displayName": "Water", + "hardness": 100, + "resistance": 100, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9283, + "minStateId": 9283, + "maxStateId": 9298, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 33, + "name": "lava", + "displayName": "Lava", + "hardness": 100, + "resistance": 100, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 6194, + "minStateId": 6194, + "maxStateId": 6209, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 8001, + "name": "flowing_lava", + "displayName": "Lava", + "hardness": 100, + "resistance": 100, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 12893, + "minStateId": 12893, + "maxStateId": 12908, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 34, + "name": "sand", + "displayName": "Sand", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6989, + "minStateId": 6989, + "maxStateId": 6990, + "drops": [57], + "boundingBox": "block" + }, + { + "id": 35, + "name": "suspicious_sand", + "displayName": "Suspicious Sand", + "hardness": 0.25, + "resistance": 0.25, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2616, + "minStateId": 2616, + "maxStateId": 2623, + "drops": [], + "boundingBox": "block" + }, + { + "id": 37, + "name": "gravel", + "displayName": "Gravel", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14126, + "minStateId": 14126, + "maxStateId": 14126, + "drops": [61], + "boundingBox": "block" + }, + { + "id": 38, + "name": "suspicious_gravel", + "displayName": "Suspicious Gravel", + "hardness": 0.25, + "resistance": 0.25, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8052, + "minStateId": 8052, + "maxStateId": 8059, + "drops": [], + "boundingBox": "block" + }, + { + "id": 39, + "name": "gold_ore", + "displayName": "Gold Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2392, + "minStateId": 2392, + "maxStateId": 2392, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [813], + "boundingBox": "block" + }, + { + "id": 40, + "name": "deepslate_gold_ore", + "displayName": "Deepslate Gold Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11215, + "minStateId": 11215, + "maxStateId": 11215, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [813], + "boundingBox": "block" + }, + { + "id": 41, + "name": "iron_ore", + "displayName": "Iron Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7977, + "minStateId": 7977, + "maxStateId": 7977, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [809], + "boundingBox": "block" + }, + { + "id": 42, + "name": "deepslate_iron_ore", + "displayName": "Deepslate Iron Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12972, + "minStateId": 12972, + "maxStateId": 12972, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [809], + "boundingBox": "block" + }, + { + "id": 43, + "name": "coal_ore", + "displayName": "Coal Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7068, + "minStateId": 7068, + "maxStateId": 7068, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [802], + "boundingBox": "block" + }, + { + "id": 44, + "name": "deepslate_coal_ore", + "displayName": "Deepslate Coal Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12858, + "minStateId": 12858, + "maxStateId": 12858, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [802], + "boundingBox": "block" + }, + { + "id": 45, + "name": "nether_gold_ore", + "displayName": "Nether Gold Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 32, + "minStateId": 32, + "maxStateId": 32, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [996], + "boundingBox": "block" + }, + { + "id": 46, + "name": "oak_log", + "displayName": "Oak Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 737, + "minStateId": 737, + "maxStateId": 739, + "drops": [132], + "boundingBox": "block" + }, + { + "id": 47, + "name": "spruce_log", + "displayName": "Spruce Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7064, + "minStateId": 7064, + "maxStateId": 7066, + "drops": [133], + "boundingBox": "block" + }, + { + "id": 48, + "name": "birch_log", + "displayName": "Birch Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1799, + "minStateId": 1799, + "maxStateId": 1801, + "drops": [134], + "boundingBox": "block" + }, + { + "id": 49, + "name": "jungle_log", + "displayName": "Jungle Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 635, + "minStateId": 635, + "maxStateId": 637, + "drops": [135], + "boundingBox": "block" + }, + { + "id": 50, + "name": "acacia_log", + "displayName": "Acacia Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7157, + "minStateId": 7157, + "maxStateId": 7159, + "drops": [136], + "boundingBox": "block" + }, + { + "id": 51, + "name": "cherry_log", + "displayName": "Cherry Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12948, + "minStateId": 12948, + "maxStateId": 12950, + "drops": [137], + "boundingBox": "block" + }, + { + "id": 52, + "name": "dark_oak_log", + "displayName": "Dark Oak Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4932, + "minStateId": 4932, + "maxStateId": 4934, + "drops": [138], + "boundingBox": "block" + }, + { + "id": 53, + "name": "mangrove_log", + "displayName": "Mangrove Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1104, + "minStateId": 1104, + "maxStateId": 1106, + "drops": [139], + "boundingBox": "block" + }, + { + "id": 54, + "name": "mangrove_roots", + "displayName": "Mangrove Roots", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11317, + "minStateId": 11317, + "maxStateId": 11317, + "drops": [140], + "boundingBox": "block" + }, + { + "id": 55, + "name": "muddy_mangrove_roots", + "displayName": "Muddy Mangrove Roots", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1096, + "minStateId": 1096, + "maxStateId": 1098, + "drops": [141], + "boundingBox": "block" + }, + { + "id": 56, + "name": "bamboo_block", + "displayName": "Block of Bamboo", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 66, + "minStateId": 66, + "maxStateId": 68, + "drops": [144], + "boundingBox": "block" + }, + { + "id": 57, + "name": "stripped_spruce_log", + "displayName": "Stripped Spruce Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11411, + "minStateId": 11411, + "maxStateId": 11413, + "drops": [146], + "boundingBox": "block" + }, + { + "id": 58, + "name": "stripped_birch_log", + "displayName": "Stripped Birch Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10663, + "minStateId": 10663, + "maxStateId": 10665, + "drops": [147], + "boundingBox": "block" + }, + { + "id": 59, + "name": "stripped_jungle_log", + "displayName": "Stripped Jungle Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1783, + "minStateId": 1783, + "maxStateId": 1785, + "drops": [148], + "boundingBox": "block" + }, + { + "id": 60, + "name": "stripped_acacia_log", + "displayName": "Stripped Acacia Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10052, + "minStateId": 10052, + "maxStateId": 10054, + "drops": [149], + "boundingBox": "block" + }, + { + "id": 61, + "name": "stripped_cherry_log", + "displayName": "Stripped Cherry Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7265, + "minStateId": 7265, + "maxStateId": 7267, + "drops": [150], + "boundingBox": "block" + }, + { + "id": 62, + "name": "stripped_dark_oak_log", + "displayName": "Stripped Dark Oak Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 629, + "minStateId": 629, + "maxStateId": 631, + "drops": [151], + "boundingBox": "block" + }, + { + "id": 63, + "name": "stripped_oak_log", + "displayName": "Stripped Oak Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13257, + "minStateId": 13257, + "maxStateId": 13259, + "drops": [145], + "boundingBox": "block" + }, + { + "id": 64, + "name": "stripped_mangrove_log", + "displayName": "Stripped Mangrove Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14123, + "minStateId": 14123, + "maxStateId": 14125, + "drops": [152], + "boundingBox": "block" + }, + { + "id": 65, + "name": "stripped_bamboo_block", + "displayName": "Block of Stripped Bamboo", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5971, + "minStateId": 5971, + "maxStateId": 5973, + "drops": [165], + "boundingBox": "block" + }, + { + "id": 66, + "name": "oak_wood", + "displayName": "Oak Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8590, + "minStateId": 8590, + "maxStateId": 8592, + "drops": [166], + "boundingBox": "block" + }, + { + "id": 67, + "name": "spruce_wood", + "displayName": "Spruce Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13299, + "minStateId": 13299, + "maxStateId": 13301, + "drops": [167], + "boundingBox": "block" + }, + { + "id": 68, + "name": "birch_wood", + "displayName": "Birch Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1989, + "minStateId": 1989, + "maxStateId": 1991, + "drops": [168], + "boundingBox": "block" + }, + { + "id": 69, + "name": "jungle_wood", + "displayName": "Jungle Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2004, + "minStateId": 2004, + "maxStateId": 2006, + "drops": [169], + "boundingBox": "block" + }, + { + "id": 70, + "name": "acacia_wood", + "displayName": "Acacia Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12110, + "minStateId": 12110, + "maxStateId": 12112, + "drops": [170], + "boundingBox": "block" + }, + { + "id": 71, + "name": "cherry_wood", + "displayName": "Cherry Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12384, + "minStateId": 12384, + "maxStateId": 12389, + "drops": [171], + "boundingBox": "block" + }, + { + "id": 72, + "name": "dark_oak_wood", + "displayName": "Dark Oak Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10, + "minStateId": 10, + "maxStateId": 12, + "drops": [172], + "boundingBox": "block" + }, + { + "id": 73, + "name": "mangrove_wood", + "displayName": "Mangrove Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6942, + "minStateId": 6942, + "maxStateId": 6947, + "drops": [173], + "boundingBox": "block" + }, + { + "id": 74, + "name": "stripped_oak_wood", + "displayName": "Stripped Oak Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8147, + "minStateId": 8147, + "maxStateId": 8149, + "drops": [155], + "boundingBox": "block" + }, + { + "id": 75, + "name": "stripped_spruce_wood", + "displayName": "Stripped Spruce Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1966, + "minStateId": 1966, + "maxStateId": 1968, + "drops": [156], + "boundingBox": "block" + }, + { + "id": 76, + "name": "stripped_birch_wood", + "displayName": "Stripped Birch Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7393, + "minStateId": 7393, + "maxStateId": 7395, + "drops": [157], + "boundingBox": "block" + }, + { + "id": 77, + "name": "stripped_jungle_wood", + "displayName": "Stripped Jungle Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1099, + "minStateId": 1099, + "maxStateId": 1101, + "drops": [158], + "boundingBox": "block" + }, + { + "id": 78, + "name": "stripped_acacia_wood", + "displayName": "Stripped Acacia Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 724, + "minStateId": 724, + "maxStateId": 726, + "drops": [159], + "boundingBox": "block" + }, + { + "id": 79, + "name": "stripped_cherry_wood", + "displayName": "Stripped Cherry Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8617, + "minStateId": 8617, + "maxStateId": 8619, + "drops": [160], + "boundingBox": "block" + }, + { + "id": 80, + "name": "stripped_dark_oak_wood", + "displayName": "Stripped Dark Oak Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8585, + "minStateId": 8585, + "maxStateId": 8587, + "drops": [161], + "boundingBox": "block" + }, + { + "id": 81, + "name": "stripped_mangrove_wood", + "displayName": "Stripped Mangrove Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7023, + "minStateId": 7023, + "maxStateId": 7025, + "drops": [162], + "boundingBox": "block" + }, + { + "id": 82, + "name": "oak_leaves", + "displayName": "Oak Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 2010, + "minStateId": 2010, + "maxStateId": 2013, + "drops": [], + "boundingBox": "block" + }, + { + "id": 83, + "name": "spruce_leaves", + "displayName": "Spruce Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 7227, + "minStateId": 7227, + "maxStateId": 7230, + "drops": [], + "boundingBox": "block" + }, + { + "id": 84, + "name": "birch_leaves", + "displayName": "Birch Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 6932, + "minStateId": 6932, + "maxStateId": 6935, + "drops": [], + "boundingBox": "block" + }, + { + "id": 85, + "name": "jungle_leaves", + "displayName": "Jungle Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9095, + "minStateId": 9095, + "maxStateId": 9098, + "drops": [], + "boundingBox": "block" + }, + { + "id": 86, + "name": "acacia_leaves", + "displayName": "Acacia Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 2647, + "minStateId": 2647, + "maxStateId": 2650, + "drops": [], + "boundingBox": "block" + }, + { + "id": 87, + "name": "cherry_leaves", + "displayName": "Cherry Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10002, + "minStateId": 10002, + "maxStateId": 10005, + "drops": [], + "boundingBox": "block" + }, + { + "id": 88, + "name": "dark_oak_leaves", + "displayName": "Dark Oak Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11145, + "minStateId": 11145, + "maxStateId": 11148, + "drops": [], + "boundingBox": "block" + }, + { + "id": 89, + "name": "mangrove_leaves", + "displayName": "Mangrove Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11870, + "minStateId": 11870, + "maxStateId": 11873, + "drops": [], + "boundingBox": "block" + }, + { + "id": 90, + "name": "azalea_leaves", + "displayName": "Azalea Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13427, + "minStateId": 13427, + "maxStateId": 13430, + "drops": [], + "boundingBox": "block" + }, + { + "id": 91, + "name": "azalea_leaves_flowered", + "displayName": "Flowering Azalea Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11466, + "minStateId": 11466, + "maxStateId": 11469, + "drops": [], + "boundingBox": "block" + }, + { + "id": 92, + "name": "sponge", + "displayName": "Sponge", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1385, + "minStateId": 1385, + "maxStateId": 1386, + "drops": [186], + "boundingBox": "block" + }, + { + "id": 94, + "name": "glass", + "displayName": "Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11306, + "minStateId": 11306, + "maxStateId": 11306, + "drops": [], + "boundingBox": "block" + }, + { + "id": 95, + "name": "lapis_ore", + "displayName": "Lapis Lazuli Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13414, + "minStateId": 13414, + "maxStateId": 13414, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [806], + "boundingBox": "block" + }, + { + "id": 96, + "name": "deepslate_lapis_ore", + "displayName": "Deepslate Lapis Lazuli Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12944, + "minStateId": 12944, + "maxStateId": 12944, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [806], + "boundingBox": "block" + }, + { + "id": 97, + "name": "lapis_block", + "displayName": "Block of Lapis Lazuli", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7067, + "minStateId": 7067, + "maxStateId": 7067, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [190], + "boundingBox": "block" + }, + { + "id": 98, + "name": "dispenser", + "displayName": "Dispenser", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13823, + "minStateId": 13823, + "maxStateId": 13834, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [668], + "boundingBox": "block" + }, + { + "id": 99, + "name": "sandstone", + "displayName": "Sandstone", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6025, + "minStateId": 6025, + "maxStateId": 6028, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [191], + "boundingBox": "block" + }, + { + "id": 102, + "name": "noteblock", + "displayName": "Note Block", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1102, + "minStateId": 1102, + "maxStateId": 1102, + "drops": [681], + "boundingBox": "block" + }, + { + "id": 118, + "name": "bed", + "displayName": "Black Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11885, + "minStateId": 11885, + "maxStateId": 11900, + "drops": [], + "boundingBox": "block" + }, + { + "id": 119, + "name": "golden_rail", + "displayName": "Powered Rail", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9076, + "minStateId": 9076, + "maxStateId": 9087, + "drops": [761], + "boundingBox": "empty" + }, + { + "id": 120, + "name": "detector_rail", + "displayName": "Detector Rail", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6904, + "minStateId": 6904, + "maxStateId": 6915, + "drops": [762], + "boundingBox": "empty" + }, + { + "id": 121, + "name": "sticky_piston", + "displayName": "Sticky Piston", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7187, + "minStateId": 7187, + "maxStateId": 7192, + "drops": [663], + "boundingBox": "block" + }, + { + "id": 122, + "name": "web", + "displayName": "Cobweb", + "hardness": 4, + "resistance": 4, + "stackSize": 64, + "diggable": true, + "material": "coweb", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11908, + "minStateId": 11908, + "maxStateId": 11908, + "harvestTools": {"817": true, "822": true, "827": true, "832": true, "837": true, "842": true, "983": true}, + "drops": [850], + "boundingBox": "empty" + }, + { + "id": 123, + "name": "short_grass", + "displayName": "Short Grass", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11741, + "minStateId": 11741, + "maxStateId": 11741, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 124, + "name": "fern", + "displayName": "Fern", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11167, + "minStateId": 11167, + "maxStateId": 11167, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 125, + "name": "deadbush", + "displayName": "Dead Bush", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7964, + "minStateId": 7964, + "maxStateId": 7964, + "drops": [0], + "boundingBox": "empty" + }, + { + "id": 126, + "name": "seagrass", + "displayName": "Seagrass", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 675, + "minStateId": 675, + "maxStateId": 677, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 128, + "name": "piston", + "displayName": "Piston", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2401, + "minStateId": 2401, + "maxStateId": 2406, + "drops": [662], + "boundingBox": "block" + }, + { + "id": 129, + "name": "piston_arm_collision", + "displayName": "Piston Head", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 69, + "minStateId": 69, + "maxStateId": 74, + "drops": [], + "boundingBox": "block" + }, + { + "id": 8002, + "name": "sticky_piston_arm_collision", + "displayName": "Piston Head", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11471, + "minStateId": 11471, + "maxStateId": 11476, + "drops": [], + "boundingBox": "block" + }, + { + "id": 130, + "name": "white_wool", + "displayName": "White Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9152, + "minStateId": 9152, + "maxStateId": 9152, + "drops": [202], + "boundingBox": "block" + }, + { + "id": 131, + "name": "orange_wool", + "displayName": "Orange Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1969, + "minStateId": 1969, + "maxStateId": 1969, + "drops": [203], + "boundingBox": "block" + }, + { + "id": 132, + "name": "magenta_wool", + "displayName": "Magenta Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2434, + "minStateId": 2434, + "maxStateId": 2434, + "drops": [204], + "boundingBox": "block" + }, + { + "id": 133, + "name": "light_blue_wool", + "displayName": "Light Blue Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12345, + "minStateId": 12345, + "maxStateId": 12345, + "drops": [205], + "boundingBox": "block" + }, + { + "id": 134, + "name": "yellow_wool", + "displayName": "Yellow Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 547, + "minStateId": 547, + "maxStateId": 547, + "drops": [206], + "boundingBox": "block" + }, + { + "id": 135, + "name": "lime_wool", + "displayName": "Lime Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11083, + "minStateId": 11083, + "maxStateId": 11083, + "drops": [207], + "boundingBox": "block" + }, + { + "id": 136, + "name": "pink_wool", + "displayName": "Pink Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6159, + "minStateId": 6159, + "maxStateId": 6159, + "drops": [208], + "boundingBox": "block" + }, + { + "id": 137, + "name": "gray_wool", + "displayName": "Gray Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 645, + "minStateId": 645, + "maxStateId": 645, + "drops": [209], + "boundingBox": "block" + }, + { + "id": 138, + "name": "light_gray_wool", + "displayName": "Light Gray Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13853, + "minStateId": 13853, + "maxStateId": 13853, + "drops": [210], + "boundingBox": "block" + }, + { + "id": 139, + "name": "cyan_wool", + "displayName": "Cyan Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9088, + "minStateId": 9088, + "maxStateId": 9088, + "drops": [211], + "boundingBox": "block" + }, + { + "id": 140, + "name": "purple_wool", + "displayName": "Purple Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14099, + "minStateId": 14099, + "maxStateId": 14099, + "drops": [212], + "boundingBox": "block" + }, + { + "id": 141, + "name": "blue_wool", + "displayName": "Blue Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9255, + "minStateId": 9255, + "maxStateId": 9255, + "drops": [213], + "boundingBox": "block" + }, + { + "id": 142, + "name": "brown_wool", + "displayName": "Brown Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 704, + "minStateId": 704, + "maxStateId": 704, + "drops": [214], + "boundingBox": "block" + }, + { + "id": 143, + "name": "green_wool", + "displayName": "Green Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6106, + "minStateId": 6106, + "maxStateId": 6106, + "drops": [215], + "boundingBox": "block" + }, + { + "id": 144, + "name": "red_wool", + "displayName": "Red Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 120, + "minStateId": 120, + "maxStateId": 120, + "drops": [216], + "boundingBox": "block" + }, + { + "id": 145, + "name": "black_wool", + "displayName": "Black Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1123, + "minStateId": 1123, + "maxStateId": 1123, + "drops": [217], + "boundingBox": "block" + }, + { + "id": 146, + "name": "moving_block", + "displayName": "Moving Piston", + "hardness": -1, + "resistance": 0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9359, + "minStateId": 9359, + "maxStateId": 9359, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 147, + "name": "yellow_flower", + "displayName": "Dandelion", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1051, + "minStateId": 1051, + "maxStateId": 1051, + "drops": [218], + "boundingBox": "empty" + }, + { + "id": 148, + "name": "torchflower", + "displayName": "Torchflower", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11168, + "minStateId": 11168, + "maxStateId": 11168, + "drops": [231], + "boundingBox": "empty" + }, + { + "id": 149, + "name": "poppy", + "displayName": "Poppy", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6103, + "minStateId": 6103, + "maxStateId": 6103, + "drops": [219], + "boundingBox": "empty" + }, + { + "id": 150, + "name": "blue_orchid", + "displayName": "Blue Orchid", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6922, + "minStateId": 6922, + "maxStateId": 6922, + "drops": [220], + "boundingBox": "empty" + }, + { + "id": 151, + "name": "allium", + "displayName": "Allium", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1120, + "minStateId": 1120, + "maxStateId": 1120, + "drops": [221], + "boundingBox": "empty" + }, + { + "id": 152, + "name": "azure_bluet", + "displayName": "Azure Bluet", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 556, + "minStateId": 556, + "maxStateId": 556, + "drops": [222], + "boundingBox": "empty" + }, + { + "id": 153, + "name": "red_tulip", + "displayName": "Red Tulip", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13143, + "minStateId": 13143, + "maxStateId": 13143, + "drops": [223], + "boundingBox": "empty" + }, + { + "id": 154, + "name": "orange_tulip", + "displayName": "Orange Tulip", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12094, + "minStateId": 12094, + "maxStateId": 12094, + "drops": [224], + "boundingBox": "empty" + }, + { + "id": 155, + "name": "white_tulip", + "displayName": "White Tulip", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7446, + "minStateId": 7446, + "maxStateId": 7446, + "drops": [225], + "boundingBox": "empty" + }, + { + "id": 156, + "name": "pink_tulip", + "displayName": "Pink Tulip", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7076, + "minStateId": 7076, + "maxStateId": 7076, + "drops": [226], + "boundingBox": "empty" + }, + { + "id": 157, + "name": "oxeye_daisy", + "displayName": "Oxeye Daisy", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12983, + "minStateId": 12983, + "maxStateId": 12983, + "drops": [227], + "boundingBox": "empty" + }, + { + "id": 158, + "name": "cornflower", + "displayName": "Cornflower", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8823, + "minStateId": 8823, + "maxStateId": 8823, + "drops": [228], + "boundingBox": "empty" + }, + { + "id": 159, + "name": "wither_rose", + "displayName": "Wither Rose", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11307, + "minStateId": 11307, + "maxStateId": 11307, + "drops": [230], + "boundingBox": "empty" + }, + { + "id": 160, + "name": "lily_of_the_valley", + "displayName": "Lily of the Valley", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 649, + "minStateId": 649, + "maxStateId": 649, + "drops": [229], + "boundingBox": "empty" + }, + { + "id": 161, + "name": "brown_mushroom", + "displayName": "Brown Mushroom", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 5902, + "minStateId": 5902, + "maxStateId": 5902, + "drops": [234], + "boundingBox": "empty" + }, + { + "id": 162, + "name": "red_mushroom", + "displayName": "Red Mushroom", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7450, + "minStateId": 7450, + "maxStateId": 7450, + "drops": [235], + "boundingBox": "empty" + }, + { + "id": 163, + "name": "gold_block", + "displayName": "Block of Gold", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 784, + "minStateId": 784, + "maxStateId": 784, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [90], + "boundingBox": "block" + }, + { + "id": 164, + "name": "iron_block", + "displayName": "Block of Iron", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14100, + "minStateId": 14100, + "maxStateId": 14100, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [88], + "boundingBox": "block" + }, + { + "id": 165, + "name": "brick_block", + "displayName": "Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8092, + "minStateId": 8092, + "maxStateId": 8092, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [285], + "boundingBox": "block" + }, + { + "id": 166, + "name": "tnt", + "displayName": "TNT", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11902, + "minStateId": 11902, + "maxStateId": 11905, + "drops": [679], + "boundingBox": "block" + }, + { + "id": 167, + "name": "bookshelf", + "displayName": "Bookshelf", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11877, + "minStateId": 11877, + "maxStateId": 11877, + "drops": [925], + "boundingBox": "block" + }, + { + "id": 168, + "name": "chiseled_bookshelf", + "displayName": "Chiseled Bookshelf", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 787, + "minStateId": 787, + "maxStateId": 1042, + "drops": [], + "boundingBox": "block" + }, + { + "id": 169, + "name": "mossy_cobblestone", + "displayName": "Mossy Cobblestone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 683, + "minStateId": 683, + "maxStateId": 683, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [289], + "boundingBox": "block" + }, + { + "id": 170, + "name": "obsidian", + "displayName": "Obsidian", + "hardness": 50, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1197, + "minStateId": 1197, + "maxStateId": 1197, + "harvestTools": {"839": true, "844": true}, + "drops": [290], + "boundingBox": "block" + }, + { + "id": 171, + "name": "torch", + "displayName": "Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 14, + "filterLight": 0, + "defaultState": 2188, + "minStateId": 2188, + "maxStateId": 2193, + "drops": [291], + "boundingBox": "empty" + }, + { + "id": 173, + "name": "fire", + "displayName": "Fire", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 11151, + "minStateId": 11151, + "maxStateId": 11166, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 174, + "name": "soul_fire", + "displayName": "Soul Fire", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 1170, + "minStateId": 1170, + "maxStateId": 1185, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 175, + "name": "mob_spawner", + "displayName": "Monster Spawner", + "hardness": 5, + "resistance": 5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 1168, + "minStateId": 1168, + "maxStateId": 1168, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 176, + "name": "oak_stairs", + "displayName": "Oak Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 728, + "minStateId": 728, + "maxStateId": 735, + "drops": [383], + "boundingBox": "block" + }, + { + "id": 177, + "name": "chest", + "displayName": "Chest", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12380, + "minStateId": 12380, + "maxStateId": 12383, + "drops": [299], + "boundingBox": "block" + }, + { + "id": 178, + "name": "redstone_wire", + "displayName": "Redstone Wire", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6177, + "minStateId": 6177, + "maxStateId": 6192, + "drops": [657], + "boundingBox": "empty" + }, + { + "id": 179, + "name": "diamond_ore", + "displayName": "Diamond Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7184, + "minStateId": 7184, + "maxStateId": 7184, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [804], + "boundingBox": "block" + }, + { + "id": 180, + "name": "deepslate_diamond_ore", + "displayName": "Deepslate Diamond Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13836, + "minStateId": 13836, + "maxStateId": 13836, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [804], + "boundingBox": "block" + }, + { + "id": 181, + "name": "diamond_block", + "displayName": "Block of Diamond", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 727, + "minStateId": 727, + "maxStateId": 727, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [91], + "boundingBox": "block" + }, + { + "id": 182, + "name": "crafting_table", + "displayName": "Crafting Table", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10058, + "minStateId": 10058, + "maxStateId": 10058, + "drops": [300], + "boundingBox": "block" + }, + { + "id": 183, + "name": "wheat", + "displayName": "Wheat Crops", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12985, + "minStateId": 12985, + "maxStateId": 12992, + "drops": [853], + "boundingBox": "empty" + }, + { + "id": 184, + "name": "farmland", + "displayName": "Farmland", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6683, + "minStateId": 6683, + "maxStateId": 6690, + "drops": [28], + "boundingBox": "block" + }, + { + "id": 185, + "name": "lit_furnace", + "displayName": "Furnace", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12925, + "minStateId": 12925, + "maxStateId": 12928, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [302], + "boundingBox": "block" + }, + { + "id": 8003, + "name": "furnace", + "displayName": "Furnace", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13613, + "minStateId": 13613, + "maxStateId": 13616, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [302], + "boundingBox": "block" + }, + { + "id": 186, + "name": "standing_sign", + "displayName": "Oak Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9381, + "minStateId": 9381, + "maxStateId": 9396, + "drops": [886], + "boundingBox": "empty" + }, + { + "id": 187, + "name": "spruce_standing_sign", + "displayName": "Spruce Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12274, + "minStateId": 12274, + "maxStateId": 12289, + "drops": [887], + "boundingBox": "empty" + }, + { + "id": 188, + "name": "birch_standing_sign", + "displayName": "Birch Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13, + "minStateId": 13, + "maxStateId": 28, + "drops": [888], + "boundingBox": "empty" + }, + { + "id": 189, + "name": "acacia_standing_sign", + "displayName": "Acacia Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11371, + "minStateId": 11371, + "maxStateId": 11386, + "drops": [890], + "boundingBox": "empty" + }, + { + "id": 190, + "name": "cherry_standing_sign", + "displayName": "Cherry Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10067, + "minStateId": 10067, + "maxStateId": 10082, + "drops": [891], + "boundingBox": "empty" + }, + { + "id": 191, + "name": "jungle_standing_sign", + "displayName": "Jungle Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11125, + "minStateId": 11125, + "maxStateId": 11140, + "drops": [889], + "boundingBox": "empty" + }, + { + "id": 192, + "name": "darkoak_standing_sign", + "displayName": "Dark Oak Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13032, + "minStateId": 13032, + "maxStateId": 13047, + "drops": [892], + "boundingBox": "empty" + }, + { + "id": 193, + "name": "mangrove_standing_sign", + "displayName": "Mangrove Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7007, + "minStateId": 7007, + "maxStateId": 7022, + "drops": [893], + "boundingBox": "empty" + }, + { + "id": 194, + "name": "bamboo_standing_sign", + "displayName": "Bamboo Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12877, + "minStateId": 12877, + "maxStateId": 12892, + "drops": [894], + "boundingBox": "empty" + }, + { + "id": 195, + "name": "wooden_door", + "displayName": "Oak Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6108, + "minStateId": 6108, + "maxStateId": 6139, + "drops": [711], + "boundingBox": "block" + }, + { + "id": 196, + "name": "ladder", + "displayName": "Ladder", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14101, + "minStateId": 14101, + "maxStateId": 14106, + "drops": [303], + "boundingBox": "block" + }, + { + "id": 197, + "name": "rail", + "displayName": "Rail", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6691, + "minStateId": 6691, + "maxStateId": 6700, + "drops": [763], + "boundingBox": "empty" + }, + { + "id": 198, + "name": "stone_stairs", + "displayName": "Cobblestone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6080, + "minStateId": 6080, + "maxStateId": 6087, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [304], + "boundingBox": "block" + }, + { + "id": 199, + "name": "wall_sign", + "displayName": "Oak Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8610, + "minStateId": 8610, + "maxStateId": 8615, + "drops": [886], + "boundingBox": "empty" + }, + { + "id": 200, + "name": "spruce_wall_sign", + "displayName": "Spruce Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13096, + "minStateId": 13096, + "maxStateId": 13101, + "drops": [887], + "boundingBox": "empty" + }, + { + "id": 201, + "name": "birch_wall_sign", + "displayName": "Birch Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12098, + "minStateId": 12098, + "maxStateId": 12103, + "drops": [888], + "boundingBox": "empty" + }, + { + "id": 202, + "name": "acacia_wall_sign", + "displayName": "Acacia Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6031, + "minStateId": 6031, + "maxStateId": 6036, + "drops": [890], + "boundingBox": "empty" + }, + { + "id": 203, + "name": "cherry_wall_sign", + "displayName": "Cherry Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13443, + "minStateId": 13443, + "maxStateId": 13448, + "drops": [891], + "boundingBox": "empty" + }, + { + "id": 204, + "name": "jungle_wall_sign", + "displayName": "Jungle Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7206, + "minStateId": 7206, + "maxStateId": 7211, + "drops": [889], + "boundingBox": "empty" + }, + { + "id": 205, + "name": "darkoak_wall_sign", + "displayName": "Dark Oak Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9089, + "minStateId": 9089, + "maxStateId": 9094, + "drops": [892], + "boundingBox": "empty" + }, + { + "id": 206, + "name": "mangrove_wall_sign", + "displayName": "Mangrove Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9033, + "minStateId": 9033, + "maxStateId": 9038, + "drops": [893], + "boundingBox": "empty" + }, + { + "id": 207, + "name": "bamboo_wall_sign", + "displayName": "Bamboo Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12104, + "minStateId": 12104, + "maxStateId": 12109, + "drops": [894], + "boundingBox": "empty" + }, + { + "id": 208, + "name": "oak_hanging_sign", + "displayName": "Oak Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8151, + "minStateId": 8151, + "maxStateId": 8534, + "drops": [897], + "boundingBox": "empty" + }, + { + "id": 209, + "name": "spruce_hanging_sign", + "displayName": "Spruce Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9615, + "minStateId": 9615, + "maxStateId": 9998, + "drops": [898], + "boundingBox": "empty" + }, + { + "id": 210, + "name": "birch_hanging_sign", + "displayName": "Birch Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1399, + "minStateId": 1399, + "maxStateId": 1782, + "drops": [899], + "boundingBox": "empty" + }, + { + "id": 211, + "name": "acacia_hanging_sign", + "displayName": "Acacia Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4935, + "minStateId": 4935, + "maxStateId": 5318, + "drops": [901], + "boundingBox": "empty" + }, + { + "id": 212, + "name": "cherry_hanging_sign", + "displayName": "Cherry Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 163, + "minStateId": 163, + "maxStateId": 546, + "drops": [902], + "boundingBox": "empty" + }, + { + "id": 213, + "name": "jungle_hanging_sign", + "displayName": "Jungle Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6210, + "minStateId": 6210, + "maxStateId": 6593, + "drops": [900], + "boundingBox": "empty" + }, + { + "id": 214, + "name": "dark_oak_hanging_sign", + "displayName": "Dark Oak Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5517, + "minStateId": 5517, + "maxStateId": 5900, + "drops": [903], + "boundingBox": "empty" + }, + { + "id": 215, + "name": "crimson_hanging_sign", + "displayName": "Crimson Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12409, + "minStateId": 12409, + "maxStateId": 12792, + "drops": [906], + "boundingBox": "empty" + }, + { + "id": 216, + "name": "warped_hanging_sign", + "displayName": "Warped Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10699, + "minStateId": 10699, + "maxStateId": 11082, + "drops": [907], + "boundingBox": "empty" + }, + { + "id": 217, + "name": "mangrove_hanging_sign", + "displayName": "Mangrove Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10084, + "minStateId": 10084, + "maxStateId": 10467, + "drops": [904], + "boundingBox": "empty" + }, + { + "id": 218, + "name": "bamboo_hanging_sign", + "displayName": "Bamboo Hanging Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7544, + "minStateId": 7544, + "maxStateId": 7927, + "drops": [905], + "boundingBox": "empty" + }, + { + "id": 230, + "name": "lever", + "displayName": "Lever", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11690, + "minStateId": 11690, + "maxStateId": 11705, + "drops": [672], + "boundingBox": "empty" + }, + { + "id": 231, + "name": "stone_pressure_plate", + "displayName": "Stone Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6656, + "minStateId": 6656, + "maxStateId": 6671, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [695], + "boundingBox": "empty" + }, + { + "id": 232, + "name": "iron_door", + "displayName": "Iron Door", + "hardness": 5, + "resistance": 5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7283, + "minStateId": 7283, + "maxStateId": 7314, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [710], + "boundingBox": "block" + }, + { + "id": 233, + "name": "wooden_pressure_plate", + "displayName": "Oak Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13862, + "minStateId": 13862, + "maxStateId": 13877, + "drops": [699], + "boundingBox": "empty" + }, + { + "id": 234, + "name": "spruce_pressure_plate", + "displayName": "Spruce Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6142, + "minStateId": 6142, + "maxStateId": 6157, + "drops": [700], + "boundingBox": "empty" + }, + { + "id": 235, + "name": "birch_pressure_plate", + "displayName": "Birch Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5929, + "minStateId": 5929, + "maxStateId": 5944, + "drops": [701], + "boundingBox": "empty" + }, + { + "id": 236, + "name": "jungle_pressure_plate", + "displayName": "Jungle Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6006, + "minStateId": 6006, + "maxStateId": 6021, + "drops": [702], + "boundingBox": "empty" + }, + { + "id": 237, + "name": "acacia_pressure_plate", + "displayName": "Acacia Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9000, + "minStateId": 9000, + "maxStateId": 9015, + "drops": [703], + "boundingBox": "empty" + }, + { + "id": 238, + "name": "cherry_pressure_plate", + "displayName": "Cherry Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 147, + "minStateId": 147, + "maxStateId": 162, + "drops": [704], + "boundingBox": "empty" + }, + { + "id": 239, + "name": "dark_oak_pressure_plate", + "displayName": "Dark Oak Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10614, + "minStateId": 10614, + "maxStateId": 10629, + "drops": [705], + "boundingBox": "empty" + }, + { + "id": 240, + "name": "mangrove_pressure_plate", + "displayName": "Mangrove Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6636, + "minStateId": 6636, + "maxStateId": 6651, + "drops": [706], + "boundingBox": "empty" + }, + { + "id": 241, + "name": "bamboo_pressure_plate", + "displayName": "Bamboo Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11177, + "minStateId": 11177, + "maxStateId": 11192, + "drops": [707], + "boundingBox": "empty" + }, + { + "id": 242, + "name": "redstone_ore", + "displayName": "Redstone Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7070, + "minStateId": 7070, + "maxStateId": 7070, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [657], + "boundingBox": "block" + }, + { + "id": 8004, + "name": "lit_redstone_ore", + "displayName": "Redstone Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7939, + "minStateId": 7939, + "maxStateId": 7939, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [657], + "boundingBox": "block" + }, + { + "id": 243, + "name": "deepslate_redstone_ore", + "displayName": "Deepslate Redstone Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11817, + "minStateId": 11817, + "maxStateId": 11817, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [657], + "boundingBox": "block" + }, + { + "id": 8005, + "name": "lit_deepslate_redstone_ore", + "displayName": "Deepslate Redstone Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13319, + "minStateId": 13319, + "maxStateId": 13319, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [657], + "boundingBox": "block" + }, + { + "id": 244, + "name": "redstone_torch", + "displayName": "Redstone Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 7, + "filterLight": 0, + "defaultState": 5496, + "minStateId": 5496, + "maxStateId": 5501, + "drops": [658], + "boundingBox": "empty" + }, + { + "id": 8006, + "name": "unlit_redstone_torch", + "displayName": "Redstone Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 7, + "filterLight": 0, + "defaultState": 14065, + "minStateId": 14065, + "maxStateId": 14070, + "drops": [658], + "boundingBox": "empty" + }, + { + "id": 246, + "name": "stone_button", + "displayName": "Stone Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1369, + "minStateId": 1369, + "maxStateId": 1380, + "drops": [682], + "boundingBox": "empty" + }, + { + "id": 247, + "name": "snow_layer", + "displayName": "Snow", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 567, + "minStateId": 567, + "maxStateId": 582, + "harvestTools": {"818": true, "823": true, "828": true, "833": true, "838": true, "843": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 248, + "name": "ice", + "displayName": "Ice", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11883, + "minStateId": 11883, + "maxStateId": 11883, + "drops": [], + "boundingBox": "block" + }, + { + "id": 249, + "name": "snow", + "displayName": "Snow Block", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6988, + "minStateId": 6988, + "maxStateId": 6988, + "harvestTools": {"818": true, "823": true, "828": true, "833": true, "838": true, "843": true}, + "drops": [912], + "boundingBox": "block" + }, + { + "id": 250, + "name": "cactus", + "displayName": "Cactus", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12205, + "minStateId": 12205, + "maxStateId": 12220, + "drops": [308], + "boundingBox": "block" + }, + { + "id": 251, + "name": "clay", + "displayName": "Clay", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12393, + "minStateId": 12393, + "maxStateId": 12393, + "drops": [922], + "boundingBox": "block" + }, + { + "id": 252, + "name": "reeds", + "displayName": "Sugar Cane", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11096, + "minStateId": 11096, + "maxStateId": 11111, + "drops": [243], + "boundingBox": "empty" + }, + { + "id": 253, + "name": "jukebox", + "displayName": "Jukebox", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8616, + "minStateId": 8616, + "maxStateId": 8616, + "drops": [310], + "boundingBox": "block" + }, + { + "id": 254, + "name": "oak_fence", + "displayName": "Oak Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9529, + "minStateId": 9529, + "maxStateId": 9529, + "drops": [311], + "boundingBox": "block" + }, + { + "id": 255, + "name": "netherrack", + "displayName": "Netherrack", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12265, + "minStateId": 12265, + "maxStateId": 12265, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [325], + "boundingBox": "block" + }, + { + "id": 256, + "name": "soul_sand", + "displayName": "Soul Sand", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9614, + "minStateId": 9614, + "maxStateId": 9614, + "drops": [326], + "boundingBox": "block" + }, + { + "id": 257, + "name": "soul_soil", + "displayName": "Soul Soil", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9613, + "minStateId": 9613, + "maxStateId": 9613, + "drops": [327], + "boundingBox": "block" + }, + { + "id": 258, + "name": "basalt", + "displayName": "Basalt", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7176, + "minStateId": 7176, + "maxStateId": 7178, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [328], + "boundingBox": "block" + }, + { + "id": 259, + "name": "polished_basalt", + "displayName": "Polished Basalt", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 29, + "minStateId": 29, + "maxStateId": 31, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [329], + "boundingBox": "block" + }, + { + "id": 260, + "name": "soul_torch", + "displayName": "Soul Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 7931, + "minStateId": 7931, + "maxStateId": 7936, + "drops": [331], + "boundingBox": "empty" + }, + { + "id": 262, + "name": "glowstone", + "displayName": "Glowstone", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 6655, + "minStateId": 6655, + "maxStateId": 6655, + "drops": [934], + "boundingBox": "block" + }, + { + "id": 263, + "name": "portal", + "displayName": "Nether Portal", + "hardness": -1, + "resistance": 0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 11, + "filterLight": 0, + "defaultState": 13523, + "minStateId": 13523, + "maxStateId": 13525, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 264, + "name": "carved_pumpkin", + "displayName": "Carved Pumpkin", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13080, + "minStateId": 13080, + "maxStateId": 13083, + "drops": [323], + "boundingBox": "block" + }, + { + "id": 265, + "name": "lit_pumpkin", + "displayName": "Jack o'Lantern", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 11879, + "minStateId": 11879, + "maxStateId": 11882, + "drops": [324], + "boundingBox": "block" + }, + { + "id": 266, + "name": "cake", + "displayName": "Cake", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12402, + "minStateId": 12402, + "maxStateId": 12408, + "drops": [], + "boundingBox": "block" + }, + { + "id": 267, + "name": "powered_repeater", + "displayName": "Redstone Repeater", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7397, + "minStateId": 7397, + "maxStateId": 7412, + "drops": [660], + "boundingBox": "block" + }, + { + "id": 8007, + "name": "unpowered_repeater", + "displayName": "Redstone Repeater", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9307, + "minStateId": 9307, + "maxStateId": 9322, + "drops": [660], + "boundingBox": "block" + }, + { + "id": 268, + "name": "white_stained_glass", + "displayName": "White Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8589, + "minStateId": 8589, + "maxStateId": 8589, + "drops": [], + "boundingBox": "block" + }, + { + "id": 269, + "name": "orange_stained_glass", + "displayName": "Orange Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7391, + "minStateId": 7391, + "maxStateId": 7391, + "drops": [], + "boundingBox": "block" + }, + { + "id": 270, + "name": "magenta_stained_glass", + "displayName": "Magenta Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12910, + "minStateId": 12910, + "maxStateId": 12910, + "drops": [], + "boundingBox": "block" + }, + { + "id": 271, + "name": "light_blue_stained_glass", + "displayName": "Light Blue Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9570, + "minStateId": 9570, + "maxStateId": 9570, + "drops": [], + "boundingBox": "block" + }, + { + "id": 272, + "name": "yellow_stained_glass", + "displayName": "Yellow Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13296, + "minStateId": 13296, + "maxStateId": 13296, + "drops": [], + "boundingBox": "block" + }, + { + "id": 273, + "name": "lime_stained_glass", + "displayName": "Lime Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 119, + "minStateId": 119, + "maxStateId": 119, + "drops": [], + "boundingBox": "block" + }, + { + "id": 274, + "name": "pink_stained_glass", + "displayName": "Pink Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7143, + "minStateId": 7143, + "maxStateId": 7143, + "drops": [], + "boundingBox": "block" + }, + { + "id": 275, + "name": "gray_stained_glass", + "displayName": "Gray Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6089, + "minStateId": 6089, + "maxStateId": 6089, + "drops": [], + "boundingBox": "block" + }, + { + "id": 276, + "name": "light_gray_stained_glass", + "displayName": "Light Gray Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1196, + "minStateId": 1196, + "maxStateId": 1196, + "drops": [], + "boundingBox": "block" + }, + { + "id": 277, + "name": "cyan_stained_glass", + "displayName": "Cyan Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10536, + "minStateId": 10536, + "maxStateId": 10536, + "drops": [], + "boundingBox": "block" + }, + { + "id": 278, + "name": "purple_stained_glass", + "displayName": "Purple Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2640, + "minStateId": 2640, + "maxStateId": 2640, + "drops": [], + "boundingBox": "block" + }, + { + "id": 279, + "name": "blue_stained_glass", + "displayName": "Blue Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9534, + "minStateId": 9534, + "maxStateId": 9534, + "drops": [], + "boundingBox": "block" + }, + { + "id": 280, + "name": "brown_stained_glass", + "displayName": "Brown Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1795, + "minStateId": 1795, + "maxStateId": 1795, + "drops": [], + "boundingBox": "block" + }, + { + "id": 281, + "name": "green_stained_glass", + "displayName": "Green Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7073, + "minStateId": 7073, + "maxStateId": 7073, + "drops": [], + "boundingBox": "block" + }, + { + "id": 282, + "name": "red_stained_glass", + "displayName": "Red Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8999, + "minStateId": 8999, + "maxStateId": 8999, + "drops": [], + "boundingBox": "block" + }, + { + "id": 283, + "name": "black_stained_glass", + "displayName": "Black Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10537, + "minStateId": 10537, + "maxStateId": 10537, + "drops": [], + "boundingBox": "block" + }, + { + "id": 284, + "name": "trapdoor", + "displayName": "Oak Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 656, + "minStateId": 656, + "maxStateId": 671, + "drops": [731], + "boundingBox": "block" + }, + { + "id": 285, + "name": "spruce_trapdoor", + "displayName": "Spruce Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11751, + "minStateId": 11751, + "maxStateId": 11766, + "drops": [732], + "boundingBox": "block" + }, + { + "id": 286, + "name": "birch_trapdoor", + "displayName": "Birch Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11853, + "minStateId": 11853, + "maxStateId": 11868, + "drops": [733], + "boundingBox": "block" + }, + { + "id": 287, + "name": "jungle_trapdoor", + "displayName": "Jungle Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9134, + "minStateId": 9134, + "maxStateId": 9149, + "drops": [734], + "boundingBox": "block" + }, + { + "id": 288, + "name": "acacia_trapdoor", + "displayName": "Acacia Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9364, + "minStateId": 9364, + "maxStateId": 9379, + "drops": [735], + "boundingBox": "block" + }, + { + "id": 289, + "name": "cherry_trapdoor", + "displayName": "Cherry Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2374, + "minStateId": 2374, + "maxStateId": 2389, + "drops": [736], + "boundingBox": "block" + }, + { + "id": 290, + "name": "dark_oak_trapdoor", + "displayName": "Dark Oak Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13211, + "minStateId": 13211, + "maxStateId": 13226, + "drops": [737], + "boundingBox": "block" + }, + { + "id": 291, + "name": "mangrove_trapdoor", + "displayName": "Mangrove Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7324, + "minStateId": 7324, + "maxStateId": 7339, + "drops": [738], + "boundingBox": "block" + }, + { + "id": 292, + "name": "bamboo_trapdoor", + "displayName": "Bamboo Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9016, + "minStateId": 9016, + "maxStateId": 9031, + "drops": [739], + "boundingBox": "block" + }, + { + "id": 293, + "name": "stonebrick", + "displayName": "Stone Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11744, + "minStateId": 11744, + "maxStateId": 11748, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [340], + "boundingBox": "block" + }, + { + "id": 297, + "name": "packed_mud", + "displayName": "Packed Mud", + "hardness": 1, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 744, + "minStateId": 744, + "maxStateId": 744, + "drops": [344], + "boundingBox": "block" + }, + { + "id": 298, + "name": "mud_bricks", + "displayName": "Mud Bricks", + "hardness": 1.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12097, + "minStateId": 12097, + "maxStateId": 12097, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [345], + "boundingBox": "block" + }, + { + "id": 299, + "name": "monster_egg", + "displayName": "Infested Stone", + "hardness": 0.75, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6916, + "minStateId": 6916, + "maxStateId": 6921, + "drops": [], + "boundingBox": "block" + }, + { + "id": 305, + "name": "brown_mushroom_block", + "displayName": "Brown Mushroom Block", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13051, + "minStateId": 13051, + "maxStateId": 13066, + "drops": [0], + "boundingBox": "block" + }, + { + "id": 306, + "name": "red_mushroom_block", + "displayName": "Red Mushroom Block", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5974, + "minStateId": 5974, + "maxStateId": 5989, + "drops": [0], + "boundingBox": "block" + }, + { + "id": 308, + "name": "iron_bars", + "displayName": "Iron Bars", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8145, + "minStateId": 8145, + "maxStateId": 8145, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [355], + "boundingBox": "block" + }, + { + "id": 309, + "name": "chain", + "displayName": "Chain", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12390, + "minStateId": 12390, + "maxStateId": 12392, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [356], + "boundingBox": "block" + }, + { + "id": 310, + "name": "glass_pane", + "displayName": "Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8995, + "minStateId": 8995, + "maxStateId": 8995, + "drops": [], + "boundingBox": "block" + }, + { + "id": 311, + "name": "pumpkin", + "displayName": "Pumpkin", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7422, + "minStateId": 7422, + "maxStateId": 7425, + "drops": [322], + "boundingBox": "block" + }, + { + "id": 312, + "name": "melon_block", + "displayName": "Melon", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1158, + "minStateId": 1158, + "maxStateId": 1158, + "drops": [984], + "boundingBox": "block" + }, + { + "id": 313, + "name": "pumpkin_stem", + "displayName": "Attached Pumpkin Stem", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11418, + "minStateId": 11418, + "maxStateId": 11465, + "drops": [986], + "boundingBox": "empty" + }, + { + "id": 314, + "name": "melon_stem", + "displayName": "Attached Melon Stem", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8536, + "minStateId": 8536, + "maxStateId": 8583, + "drops": [987], + "boundingBox": "empty" + }, + { + "id": 317, + "name": "vine", + "displayName": "Vines", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "vine_or_glow_lichen;plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2358, + "minStateId": 2358, + "maxStateId": 2373, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 318, + "name": "glow_lichen", + "displayName": "Glow Lichen", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "vine_or_glow_lichen;plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9398, + "minStateId": 9398, + "maxStateId": 9461, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 319, + "name": "fence_gate", + "displayName": "Oak Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 78, + "minStateId": 78, + "maxStateId": 93, + "drops": [750], + "boundingBox": "block" + }, + { + "id": 320, + "name": "brick_stairs", + "displayName": "Brick Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11709, + "minStateId": 11709, + "maxStateId": 11716, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [361], + "boundingBox": "block" + }, + { + "id": 321, + "name": "stone_brick_stairs", + "displayName": "Stone Brick Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2408, + "minStateId": 2408, + "maxStateId": 2415, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [362], + "boundingBox": "block" + }, + { + "id": 322, + "name": "mud_brick_stairs", + "displayName": "Mud Brick Stairs", + "hardness": 1.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9299, + "minStateId": 9299, + "maxStateId": 9306, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [363], + "boundingBox": "block" + }, + { + "id": 323, + "name": "mycelium", + "displayName": "Mycelium", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6055, + "minStateId": 6055, + "maxStateId": 6055, + "drops": [28], + "boundingBox": "block" + }, + { + "id": 324, + "name": "waterlily", + "displayName": "Lily Pad", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2613, + "minStateId": 2613, + "maxStateId": 2613, + "drops": [365], + "boundingBox": "block" + }, + { + "id": 325, + "name": "nether_brick", + "displayName": "Nether Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12971, + "minStateId": 12971, + "maxStateId": 12971, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [366], + "boundingBox": "block" + }, + { + "id": 326, + "name": "nether_brick_fence", + "displayName": "Nether Brick Fence", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7075, + "minStateId": 7075, + "maxStateId": 7075, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [369], + "boundingBox": "block" + }, + { + "id": 327, + "name": "nether_brick_stairs", + "displayName": "Nether Brick Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 108, + "minStateId": 108, + "maxStateId": 115, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [370], + "boundingBox": "block" + }, + { + "id": 328, + "name": "nether_wart", + "displayName": "Nether Wart", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13470, + "minStateId": 13470, + "maxStateId": 13473, + "drops": [997], + "boundingBox": "empty" + }, + { + "id": 329, + "name": "enchanting_table", + "displayName": "Enchanting Table", + "hardness": 5, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 7, + "filterLight": 0, + "defaultState": 11929, + "minStateId": 11929, + "maxStateId": 11929, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [375], + "boundingBox": "block" + }, + { + "id": 330, + "name": "brewing_stand", + "displayName": "Brewing Stand", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 13264, + "minStateId": 13264, + "maxStateId": 13271, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1004], + "boundingBox": "block" + }, + { + "id": 331, + "name": "cauldron", + "displayName": "Cauldron", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13161, + "minStateId": 13161, + "maxStateId": 13181, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1005], + "boundingBox": "block" + }, + { + "id": 335, + "name": "end_portal", + "displayName": "End Portal", + "hardness": -1, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 13295, + "minStateId": 13295, + "maxStateId": 13295, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 336, + "name": "end_portal_frame", + "displayName": "End Portal Frame", + "hardness": -1, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 1, + "filterLight": 0, + "defaultState": 11169, + "minStateId": 11169, + "maxStateId": 11176, + "drops": [], + "boundingBox": "block" + }, + { + "id": 337, + "name": "end_stone", + "displayName": "End Stone", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6601, + "minStateId": 6601, + "maxStateId": 6601, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [377], + "boundingBox": "block" + }, + { + "id": 338, + "name": "dragon_egg", + "displayName": "Dragon Egg", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 12969, + "minStateId": 12969, + "maxStateId": 12969, + "drops": [379], + "boundingBox": "block" + }, + { + "id": 339, + "name": "redstone_lamp", + "displayName": "Redstone Lamp", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 682, + "minStateId": 682, + "maxStateId": 682, + "drops": [680], + "boundingBox": "block" + }, + { + "id": 8008, + "name": "lit_redstone_lamp", + "displayName": "Redstone Lamp", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7181, + "minStateId": 7181, + "maxStateId": 7181, + "drops": [680], + "boundingBox": "block" + }, + { + "id": 340, + "name": "cocoa", + "displayName": "Cocoa", + "hardness": 0.2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11678, + "minStateId": 11678, + "maxStateId": 11689, + "drops": [943], + "boundingBox": "block" + }, + { + "id": 341, + "name": "sandstone_stairs", + "displayName": "Sandstone Stairs", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5961, + "minStateId": 5961, + "maxStateId": 5968, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [380], + "boundingBox": "block" + }, + { + "id": 342, + "name": "emerald_ore", + "displayName": "Emerald Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13050, + "minStateId": 13050, + "maxStateId": 13050, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [805], + "boundingBox": "block" + }, + { + "id": 343, + "name": "deepslate_emerald_ore", + "displayName": "Deepslate Emerald Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11478, + "minStateId": 11478, + "maxStateId": 11478, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [805], + "boundingBox": "block" + }, + { + "id": 344, + "name": "ender_chest", + "displayName": "Ender Chest", + "hardness": 22.5, + "resistance": 600, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 7, + "filterLight": 0, + "defaultState": 7193, + "minStateId": 7193, + "maxStateId": 7196, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [290], + "boundingBox": "block" + }, + { + "id": 345, + "name": "tripwire_hook", + "displayName": "Tripwire Hook", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10572, + "minStateId": 10572, + "maxStateId": 10587, + "drops": [677], + "boundingBox": "empty" + }, + { + "id": 346, + "name": "trip_wire", + "displayName": "Tripwire", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13145, + "minStateId": 13145, + "maxStateId": 13160, + "drops": [850], + "boundingBox": "empty" + }, + { + "id": 347, + "name": "emerald_block", + "displayName": "Block of Emerald", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2615, + "minStateId": 2615, + "maxStateId": 2615, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [382], + "boundingBox": "block" + }, + { + "id": 348, + "name": "spruce_stairs", + "displayName": "Spruce Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 133, + "minStateId": 133, + "maxStateId": 140, + "drops": [384], + "boundingBox": "block" + }, + { + "id": 349, + "name": "birch_stairs", + "displayName": "Birch Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12225, + "minStateId": 12225, + "maxStateId": 12232, + "drops": [385], + "boundingBox": "block" + }, + { + "id": 350, + "name": "jungle_stairs", + "displayName": "Jungle Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12187, + "minStateId": 12187, + "maxStateId": 12194, + "drops": [386], + "boundingBox": "block" + }, + { + "id": 351, + "name": "command_block", + "displayName": "Command Block", + "hardness": -1, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13540, + "minStateId": 13540, + "maxStateId": 13551, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 352, + "name": "beacon", + "displayName": "Beacon", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 557, + "minStateId": 557, + "maxStateId": 557, + "drops": [396], + "boundingBox": "block" + }, + { + "id": 353, + "name": "cobblestone_wall", + "displayName": "Cobblestone Wall", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2652, + "minStateId": 2652, + "maxStateId": 4919, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [397], + "boundingBox": "block" + }, + { + "id": 383, + "name": "carrots", + "displayName": "Carrots", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10519, + "minStateId": 10519, + "maxStateId": 10526, + "drops": [1097], + "boundingBox": "empty" + }, + { + "id": 384, + "name": "potatoes", + "displayName": "Potatoes", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1088, + "minStateId": 1088, + "maxStateId": 1095, + "drops": [1098], + "boundingBox": "empty" + }, + { + "id": 385, + "name": "wooden_button", + "displayName": "Oak Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11522, + "minStateId": 11522, + "maxStateId": 11533, + "drops": [684], + "boundingBox": "empty" + }, + { + "id": 386, + "name": "spruce_button", + "displayName": "Spruce Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7145, + "minStateId": 7145, + "maxStateId": 7156, + "drops": [685], + "boundingBox": "empty" + }, + { + "id": 387, + "name": "birch_button", + "displayName": "Birch Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13526, + "minStateId": 13526, + "maxStateId": 13537, + "drops": [686], + "boundingBox": "empty" + }, + { + "id": 388, + "name": "jungle_button", + "displayName": "Jungle Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 121, + "minStateId": 121, + "maxStateId": 132, + "drops": [687], + "boundingBox": "empty" + }, + { + "id": 389, + "name": "acacia_button", + "displayName": "Acacia Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12912, + "minStateId": 12912, + "maxStateId": 12923, + "drops": [688], + "boundingBox": "empty" + }, + { + "id": 390, + "name": "cherry_button", + "displayName": "Cherry Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7480, + "minStateId": 7480, + "maxStateId": 7491, + "drops": [689], + "boundingBox": "empty" + }, + { + "id": 391, + "name": "dark_oak_button", + "displayName": "Dark Oak Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 95, + "minStateId": 95, + "maxStateId": 106, + "drops": [690], + "boundingBox": "empty" + }, + { + "id": 392, + "name": "mangrove_button", + "displayName": "Mangrove Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12290, + "minStateId": 12290, + "maxStateId": 12301, + "drops": [691], + "boundingBox": "empty" + }, + { + "id": 393, + "name": "bamboo_button", + "displayName": "Bamboo Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11644, + "minStateId": 11644, + "maxStateId": 11655, + "drops": [692], + "boundingBox": "empty" + }, + { + "id": 406, + "name": "skull", + "displayName": "Piglin Head", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9051, + "minStateId": 9051, + "maxStateId": 9056, + "drops": [1109], + "boundingBox": "block" + }, + { + "id": 408, + "name": "anvil", + "displayName": "Anvil", + "hardness": 5, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11837, + "minStateId": 11837, + "maxStateId": 11852, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [419], + "boundingBox": "block" + }, + { + "id": 411, + "name": "trapped_chest", + "displayName": "Trapped Chest", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9360, + "minStateId": 9360, + "maxStateId": 9363, + "drops": [678], + "boundingBox": "block" + }, + { + "id": 412, + "name": "light_weighted_pressure_plate", + "displayName": "Light Weighted Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6037, + "minStateId": 6037, + "maxStateId": 6052, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [697], + "boundingBox": "empty" + }, + { + "id": 413, + "name": "heavy_weighted_pressure_plate", + "displayName": "Heavy Weighted Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2624, + "minStateId": 2624, + "maxStateId": 2639, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [698], + "boundingBox": "empty" + }, + { + "id": 414, + "name": "powered_comparator", + "displayName": "Redstone Comparator", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1132, + "minStateId": 1132, + "maxStateId": 1147, + "drops": [661], + "boundingBox": "block" + }, + { + "id": 8009, + "name": "unpowered_comparator", + "displayName": "Redstone Comparator", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11482, + "minStateId": 11482, + "maxStateId": 11497, + "drops": [661], + "boundingBox": "block" + }, + { + "id": 415, + "name": "daylight_detector", + "displayName": "Daylight Detector", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6991, + "minStateId": 6991, + "maxStateId": 7006, + "drops": [674], + "boundingBox": "block" + }, + { + "id": 8010, + "name": "daylight_detector_inverted", + "displayName": "Daylight Detector", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7341, + "minStateId": 7341, + "maxStateId": 7356, + "drops": [674], + "boundingBox": "block" + }, + { + "id": 416, + "name": "redstone_block", + "displayName": "Block of Redstone", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6160, + "minStateId": 6160, + "maxStateId": 6160, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [659], + "boundingBox": "block" + }, + { + "id": 417, + "name": "quartz_ore", + "displayName": "Nether Quartz Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7340, + "minStateId": 7340, + "maxStateId": 7340, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [807], + "boundingBox": "block" + }, + { + "id": 418, + "name": "hopper", + "displayName": "Hopper", + "hardness": 3, + "resistance": 4.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12114, + "minStateId": 12114, + "maxStateId": 12125, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [667], + "boundingBox": "block" + }, + { + "id": 419, + "name": "quartz_block", + "displayName": "Block of Quartz", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6068, + "minStateId": 6068, + "maxStateId": 6079, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [423], + "boundingBox": "block" + }, + { + "id": 422, + "name": "quartz_stairs", + "displayName": "Quartz Stairs", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8110, + "minStateId": 8110, + "maxStateId": 8117, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [426], + "boundingBox": "block" + }, + { + "id": 423, + "name": "activator_rail", + "displayName": "Activator Rail", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1060, + "minStateId": 1060, + "maxStateId": 1071, + "drops": [764], + "boundingBox": "empty" + }, + { + "id": 424, + "name": "dropper", + "displayName": "Dropper", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13084, + "minStateId": 13084, + "maxStateId": 13095, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [669], + "boundingBox": "block" + }, + { + "id": 425, + "name": "white_terracotta", + "displayName": "White Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8146, + "minStateId": 8146, + "maxStateId": 8146, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [427], + "boundingBox": "block" + }, + { + "id": 426, + "name": "orange_terracotta", + "displayName": "Orange Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13252, + "minStateId": 13252, + "maxStateId": 13252, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [428], + "boundingBox": "block" + }, + { + "id": 427, + "name": "magenta_terracotta", + "displayName": "Magenta Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7453, + "minStateId": 7453, + "maxStateId": 7453, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [429], + "boundingBox": "block" + }, + { + "id": 428, + "name": "light_blue_terracotta", + "displayName": "Light Blue Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7180, + "minStateId": 7180, + "maxStateId": 7180, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [430], + "boundingBox": "block" + }, + { + "id": 429, + "name": "yellow_terracotta", + "displayName": "Yellow Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6987, + "minStateId": 6987, + "maxStateId": 6987, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [431], + "boundingBox": "block" + }, + { + "id": 430, + "name": "lime_terracotta", + "displayName": "Lime Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14071, + "minStateId": 14071, + "maxStateId": 14071, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [432], + "boundingBox": "block" + }, + { + "id": 431, + "name": "pink_terracotta", + "displayName": "Pink Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6936, + "minStateId": 6936, + "maxStateId": 6936, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [433], + "boundingBox": "block" + }, + { + "id": 432, + "name": "gray_terracotta", + "displayName": "Gray Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7429, + "minStateId": 7429, + "maxStateId": 7429, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [434], + "boundingBox": "block" + }, + { + "id": 433, + "name": "light_gray_terracotta", + "displayName": "Light Gray Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1790, + "minStateId": 1790, + "maxStateId": 1790, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [435], + "boundingBox": "block" + }, + { + "id": 434, + "name": "cyan_terracotta", + "displayName": "Cyan Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 0, + "minStateId": 0, + "maxStateId": 0, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [436], + "boundingBox": "block" + }, + { + "id": 435, + "name": "purple_terracotta", + "displayName": "Purple Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11520, + "minStateId": 11520, + "maxStateId": 11520, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [437], + "boundingBox": "block" + }, + { + "id": 436, + "name": "blue_terracotta", + "displayName": "Blue Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6024, + "minStateId": 6024, + "maxStateId": 6024, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [438], + "boundingBox": "block" + }, + { + "id": 437, + "name": "brown_terracotta", + "displayName": "Brown Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13835, + "minStateId": 13835, + "maxStateId": 13835, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [439], + "boundingBox": "block" + }, + { + "id": 438, + "name": "green_terracotta", + "displayName": "Green Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6090, + "minStateId": 6090, + "maxStateId": 6090, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [440], + "boundingBox": "block" + }, + { + "id": 439, + "name": "red_terracotta", + "displayName": "Red Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2428, + "minStateId": 2428, + "maxStateId": 2428, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [441], + "boundingBox": "block" + }, + { + "id": 440, + "name": "black_terracotta", + "displayName": "Black Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11214, + "minStateId": 11214, + "maxStateId": 11214, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [442], + "boundingBox": "block" + }, + { + "id": 441, + "name": "white_stained_glass_pane", + "displayName": "White Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7392, + "minStateId": 7392, + "maxStateId": 7392, + "drops": [], + "boundingBox": "block" + }, + { + "id": 442, + "name": "orange_stained_glass_pane", + "displayName": "Orange Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 646, + "minStateId": 646, + "maxStateId": 646, + "drops": [], + "boundingBox": "block" + }, + { + "id": 443, + "name": "magenta_stained_glass_pane", + "displayName": "Magenta Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8144, + "minStateId": 8144, + "maxStateId": 8144, + "drops": [], + "boundingBox": "block" + }, + { + "id": 444, + "name": "light_blue_stained_glass_pane", + "displayName": "Light Blue Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6654, + "minStateId": 6654, + "maxStateId": 6654, + "drops": [], + "boundingBox": "block" + }, + { + "id": 445, + "name": "yellow_stained_glass_pane", + "displayName": "Yellow Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 554, + "minStateId": 554, + "maxStateId": 554, + "drops": [], + "boundingBox": "block" + }, + { + "id": 446, + "name": "lime_stained_glass_pane", + "displayName": "Lime Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13294, + "minStateId": 13294, + "maxStateId": 13294, + "drops": [], + "boundingBox": "block" + }, + { + "id": 447, + "name": "pink_stained_glass_pane", + "displayName": "Pink Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12344, + "minStateId": 12344, + "maxStateId": 12344, + "drops": [], + "boundingBox": "block" + }, + { + "id": 448, + "name": "gray_stained_glass_pane", + "displayName": "Gray Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12113, + "minStateId": 12113, + "maxStateId": 12113, + "drops": [], + "boundingBox": "block" + }, + { + "id": 449, + "name": "light_gray_stained_glass_pane", + "displayName": "Light Gray Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1198, + "minStateId": 1198, + "maxStateId": 1198, + "drops": [], + "boundingBox": "block" + }, + { + "id": 450, + "name": "cyan_stained_glass_pane", + "displayName": "Cyan Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11659, + "minStateId": 11659, + "maxStateId": 11659, + "drops": [], + "boundingBox": "block" + }, + { + "id": 451, + "name": "purple_stained_glass_pane", + "displayName": "Purple Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8593, + "minStateId": 8593, + "maxStateId": 8593, + "drops": [], + "boundingBox": "block" + }, + { + "id": 452, + "name": "blue_stained_glass_pane", + "displayName": "Blue Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 77, + "minStateId": 77, + "maxStateId": 77, + "drops": [], + "boundingBox": "block" + }, + { + "id": 453, + "name": "brown_stained_glass_pane", + "displayName": "Brown Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 740, + "minStateId": 740, + "maxStateId": 740, + "drops": [], + "boundingBox": "block" + }, + { + "id": 454, + "name": "green_stained_glass_pane", + "displayName": "Green Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6923, + "minStateId": 6923, + "maxStateId": 6923, + "drops": [], + "boundingBox": "block" + }, + { + "id": 455, + "name": "red_stained_glass_pane", + "displayName": "Red Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12339, + "minStateId": 12339, + "maxStateId": 12339, + "drops": [], + "boundingBox": "block" + }, + { + "id": 456, + "name": "black_stained_glass_pane", + "displayName": "Black Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2651, + "minStateId": 2651, + "maxStateId": 2651, + "drops": [], + "boundingBox": "block" + }, + { + "id": 457, + "name": "acacia_stairs", + "displayName": "Acacia Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11326, + "minStateId": 11326, + "maxStateId": 11333, + "drops": [387], + "boundingBox": "block" + }, + { + "id": 458, + "name": "cherry_stairs", + "displayName": "Cherry Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12394, + "minStateId": 12394, + "maxStateId": 12401, + "drops": [388], + "boundingBox": "block" + }, + { + "id": 459, + "name": "dark_oak_stairs", + "displayName": "Dark Oak Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8825, + "minStateId": 8825, + "maxStateId": 8832, + "drops": [389], + "boundingBox": "block" + }, + { + "id": 460, + "name": "mangrove_stairs", + "displayName": "Mangrove Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7462, + "minStateId": 7462, + "maxStateId": 7469, + "drops": [390], + "boundingBox": "block" + }, + { + "id": 461, + "name": "bamboo_stairs", + "displayName": "Bamboo Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2180, + "minStateId": 2180, + "maxStateId": 2187, + "drops": [391], + "boundingBox": "block" + }, + { + "id": 462, + "name": "bamboo_mosaic_stairs", + "displayName": "Bamboo Mosaic Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11334, + "minStateId": 11334, + "maxStateId": 11341, + "drops": [392], + "boundingBox": "block" + }, + { + "id": 463, + "name": "slime", + "displayName": "Slime Block", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 7027, + "minStateId": 7027, + "maxStateId": 7027, + "drops": [664], + "boundingBox": "block" + }, + { + "id": 464, + "name": "barrier", + "displayName": "Barrier", + "hardness": -1, + "resistance": 3600000.8, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11115, + "minStateId": 11115, + "maxStateId": 11115, + "drops": [], + "boundingBox": "block" + }, + { + "id": 465, + "name": "light_block", + "displayName": "Light", + "hardness": -1, + "resistance": 3600000.8, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 13790, + "minStateId": 13790, + "maxStateId": 13805, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 466, + "name": "iron_trapdoor", + "displayName": "Iron Trapdoor", + "hardness": 5, + "resistance": 5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1072, + "minStateId": 1072, + "maxStateId": 1087, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [730], + "boundingBox": "block" + }, + { + "id": 467, + "name": "prismarine", + "displayName": "Prismarine", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11193, + "minStateId": 11193, + "maxStateId": 11195, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [503], + "boundingBox": "block" + }, + { + "id": 470, + "name": "prismarine_stairs", + "displayName": "Prismarine Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12951, + "minStateId": 12951, + "maxStateId": 12958, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [506], + "boundingBox": "block" + }, + { + "id": 471, + "name": "prismarine_bricks_stairs", + "displayName": "Prismarine Brick Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 619, + "minStateId": 619, + "maxStateId": 626, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [507], + "boundingBox": "block" + }, + { + "id": 472, + "name": "dark_prismarine_stairs", + "displayName": "Dark Prismarine Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13133, + "minStateId": 13133, + "maxStateId": 13140, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [508], + "boundingBox": "block" + }, + { + "id": 473, + "name": "stone_block_slab2", + "displayName": "Prismarine Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9571, + "minStateId": 9571, + "maxStateId": 9586, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [278], + "boundingBox": "block" + }, + { + "id": 8011, + "name": "double_stone_block_slab2", + "displayName": "Prismarine Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11602, + "minStateId": 11602, + "maxStateId": 11617, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [278], + "boundingBox": "block" + }, + { + "id": 476, + "name": "sea_lantern", + "displayName": "Sea Lantern", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 13263, + "minStateId": 13263, + "maxStateId": 13263, + "drops": [1117], + "boundingBox": "block" + }, + { + "id": 477, + "name": "hay_block", + "displayName": "Hay Bale", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1992, + "minStateId": 1992, + "maxStateId": 2003, + "drops": [445], + "boundingBox": "block" + }, + { + "id": 478, + "name": "white_carpet", + "displayName": "White Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12959, + "minStateId": 12959, + "maxStateId": 12959, + "drops": [446], + "boundingBox": "block" + }, + { + "id": 479, + "name": "orange_carpet", + "displayName": "Orange Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12302, + "minStateId": 12302, + "maxStateId": 12302, + "drops": [447], + "boundingBox": "block" + }, + { + "id": 480, + "name": "magenta_carpet", + "displayName": "Magenta Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 687, + "minStateId": 687, + "maxStateId": 687, + "drops": [448], + "boundingBox": "block" + }, + { + "id": 481, + "name": "light_blue_carpet", + "displayName": "Light Blue Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8150, + "minStateId": 8150, + "maxStateId": 8150, + "drops": [449], + "boundingBox": "block" + }, + { + "id": 482, + "name": "yellow_carpet", + "displayName": "Yellow Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10535, + "minStateId": 10535, + "maxStateId": 10535, + "drops": [450], + "boundingBox": "block" + }, + { + "id": 483, + "name": "lime_carpet", + "displayName": "Lime Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11922, + "minStateId": 11922, + "maxStateId": 11922, + "drops": [451], + "boundingBox": "block" + }, + { + "id": 484, + "name": "pink_carpet", + "displayName": "Pink Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13416, + "minStateId": 13416, + "maxStateId": 13416, + "drops": [452], + "boundingBox": "block" + }, + { + "id": 485, + "name": "gray_carpet", + "displayName": "Gray Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 648, + "minStateId": 648, + "maxStateId": 648, + "drops": [453], + "boundingBox": "block" + }, + { + "id": 486, + "name": "light_gray_carpet", + "displayName": "Light Gray Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14098, + "minStateId": 14098, + "maxStateId": 14098, + "drops": [454], + "boundingBox": "block" + }, + { + "id": 487, + "name": "cyan_carpet", + "displayName": "Cyan Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5995, + "minStateId": 5995, + "maxStateId": 5995, + "drops": [455], + "boundingBox": "block" + }, + { + "id": 488, + "name": "purple_carpet", + "displayName": "Purple Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13474, + "minStateId": 13474, + "maxStateId": 13474, + "drops": [456], + "boundingBox": "block" + }, + { + "id": 489, + "name": "blue_carpet", + "displayName": "Blue Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 591, + "minStateId": 591, + "maxStateId": 591, + "drops": [457], + "boundingBox": "block" + }, + { + "id": 490, + "name": "brown_carpet", + "displayName": "Brown Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2407, + "minStateId": 2407, + "maxStateId": 2407, + "drops": [458], + "boundingBox": "block" + }, + { + "id": 491, + "name": "green_carpet", + "displayName": "Green Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6107, + "minStateId": 6107, + "maxStateId": 6107, + "drops": [459], + "boundingBox": "block" + }, + { + "id": 492, + "name": "red_carpet", + "displayName": "Red Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13123, + "minStateId": 13123, + "maxStateId": 13123, + "drops": [460], + "boundingBox": "block" + }, + { + "id": 493, + "name": "black_carpet", + "displayName": "Black Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11124, + "minStateId": 11124, + "maxStateId": 11124, + "drops": [461], + "boundingBox": "block" + }, + { + "id": 494, + "name": "hardened_clay", + "displayName": "Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1398, + "minStateId": 1398, + "maxStateId": 1398, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [462], + "boundingBox": "block" + }, + { + "id": 495, + "name": "coal_block", + "displayName": "Block of Coal", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9151, + "minStateId": 9151, + "maxStateId": 9151, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [81], + "boundingBox": "block" + }, + { + "id": 496, + "name": "packed_ice", + "displayName": "Packed Ice", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 743, + "minStateId": 743, + "maxStateId": 743, + "drops": [], + "boundingBox": "block" + }, + { + "id": 497, + "name": "sunflower", + "displayName": "Sunflower", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7510, + "minStateId": 7510, + "maxStateId": 7511, + "drops": [465], + "boundingBox": "empty" + }, + { + "id": 498, + "name": "lilac", + "displayName": "Lilac", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13013, + "minStateId": 13013, + "maxStateId": 13014, + "drops": [466], + "boundingBox": "empty" + }, + { + "id": 499, + "name": "rose_bush", + "displayName": "Rose Bush", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9251, + "minStateId": 9251, + "maxStateId": 9252, + "drops": [467], + "boundingBox": "empty" + }, + { + "id": 500, + "name": "peony", + "displayName": "Peony", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13538, + "minStateId": 13538, + "maxStateId": 13539, + "drops": [468], + "boundingBox": "empty" + }, + { + "id": 501, + "name": "tall_grass", + "displayName": "Tall Grass", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11656, + "minStateId": 11656, + "maxStateId": 11657, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 502, + "name": "large_fern", + "displayName": "Large Fern", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11673, + "minStateId": 11673, + "maxStateId": 11674, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 518, + "name": "standing_banner", + "displayName": "Black Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12170, + "minStateId": 12170, + "maxStateId": 12185, + "drops": [1148], + "boundingBox": "empty" + }, + { + "id": 534, + "name": "wall_banner", + "displayName": "Black Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9462, + "minStateId": 9462, + "maxStateId": 9467, + "drops": [1148], + "boundingBox": "empty" + }, + { + "id": 535, + "name": "red_sandstone", + "displayName": "Red Sandstone", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11779, + "minStateId": 11779, + "maxStateId": 11782, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [510], + "boundingBox": "block" + }, + { + "id": 538, + "name": "red_sandstone_stairs", + "displayName": "Red Sandstone Stairs", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9100, + "minStateId": 9100, + "maxStateId": 9107, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [513], + "boundingBox": "block" + }, + { + "id": 539, + "name": "oak_double_slab", + "displayName": "Oak Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5996, + "minStateId": 5996, + "maxStateId": 5997, + "drops": [252], + "boundingBox": "block" + }, + { + "id": 8012, + "name": "oak_slab", + "displayName": "Oak Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7077, + "minStateId": 7077, + "maxStateId": 7078, + "drops": [252], + "boundingBox": "block" + }, + { + "id": 540, + "name": "spruce_double_slab", + "displayName": "Spruce Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4928, + "minStateId": 4928, + "maxStateId": 4929, + "drops": [253], + "boundingBox": "block" + }, + { + "id": 8013, + "name": "spruce_slab", + "displayName": "Spruce Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12242, + "minStateId": 12242, + "maxStateId": 12243, + "drops": [253], + "boundingBox": "block" + }, + { + "id": 541, + "name": "birch_slab", + "displayName": "Birch Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6594, + "minStateId": 6594, + "maxStateId": 6595, + "drops": [254], + "boundingBox": "block" + }, + { + "id": 8014, + "name": "birch_double_slab", + "displayName": "Birch Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13882, + "minStateId": 13882, + "maxStateId": 13883, + "drops": [254], + "boundingBox": "block" + }, + { + "id": 542, + "name": "jungle_slab", + "displayName": "Jungle Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6652, + "minStateId": 6652, + "maxStateId": 6653, + "drops": [255], + "boundingBox": "block" + }, + { + "id": 8015, + "name": "jungle_double_slab", + "displayName": "Jungle Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13297, + "minStateId": 13297, + "maxStateId": 13298, + "drops": [255], + "boundingBox": "block" + }, + { + "id": 543, + "name": "acacia_double_slab", + "displayName": "Acacia Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9495, + "minStateId": 9495, + "maxStateId": 9496, + "drops": [256], + "boundingBox": "block" + }, + { + "id": 8016, + "name": "acacia_slab", + "displayName": "Acacia Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13283, + "minStateId": 13283, + "maxStateId": 13284, + "drops": [256], + "boundingBox": "block" + }, + { + "id": 544, + "name": "cherry_double_slab", + "displayName": "Cherry Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11141, + "minStateId": 11141, + "maxStateId": 11142, + "drops": [257], + "boundingBox": "block" + }, + { + "id": 8017, + "name": "cherry_slab", + "displayName": "Cherry Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11343, + "minStateId": 11343, + "maxStateId": 11344, + "drops": [257], + "boundingBox": "block" + }, + { + "id": 545, + "name": "dark_oak_slab", + "displayName": "Dark Oak Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1199, + "minStateId": 1199, + "maxStateId": 1200, + "drops": [258], + "boundingBox": "block" + }, + { + "id": 8018, + "name": "dark_oak_double_slab", + "displayName": "Dark Oak Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6937, + "minStateId": 6937, + "maxStateId": 6938, + "drops": [258], + "boundingBox": "block" + }, + { + "id": 546, + "name": "mangrove_double_slab", + "displayName": "Mangrove Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1194, + "minStateId": 1194, + "maxStateId": 1195, + "drops": [259], + "boundingBox": "block" + }, + { + "id": 8019, + "name": "mangrove_slab", + "displayName": "Mangrove Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2603, + "minStateId": 2603, + "maxStateId": 2604, + "drops": [259], + "boundingBox": "block" + }, + { + "id": 547, + "name": "bamboo_double_slab", + "displayName": "Bamboo Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7071, + "minStateId": 7071, + "maxStateId": 7072, + "drops": [260], + "boundingBox": "block" + }, + { + "id": 8020, + "name": "bamboo_slab", + "displayName": "Bamboo Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11706, + "minStateId": 11706, + "maxStateId": 11707, + "drops": [260], + "boundingBox": "block" + }, + { + "id": 548, + "name": "bamboo_mosaic_slab", + "displayName": "Bamboo Mosaic Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4930, + "minStateId": 4930, + "maxStateId": 4931, + "drops": [261], + "boundingBox": "block" + }, + { + "id": 8021, + "name": "bamboo_mosaic_double_slab", + "displayName": "Bamboo Mosaic Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6970, + "minStateId": 6970, + "maxStateId": 6971, + "drops": [261], + "boundingBox": "block" + }, + { + "id": 549, + "name": "stone_block_slab4", + "displayName": "Stone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9603, + "minStateId": 9603, + "maxStateId": 9612, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [264], + "boundingBox": "block" + }, + { + "id": 8022, + "name": "double_stone_block_slab4", + "displayName": "Stone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11634, + "minStateId": 11634, + "maxStateId": 11643, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [264], + "boundingBox": "block" + }, + { + "id": 550, + "name": "double_stone_block_slab", + "displayName": "Smooth Stone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11818, + "minStateId": 11818, + "maxStateId": 11833, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [265], + "boundingBox": "block" + }, + { + "id": 8023, + "name": "smooth_stone_slab", + "displayName": "Smooth Stone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13260, + "minStateId": 13260, + "maxStateId": 13261, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [265], + "boundingBox": "block" + }, + { + "id": 551, + "name": "sandstone_slab", + "displayName": "Sandstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1117, + "minStateId": 1117, + "maxStateId": 1118, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [266], + "boundingBox": "block" + }, + { + "id": 553, + "name": "petrified_oak_slab", + "displayName": "Petrified Oak Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13068, + "minStateId": 13068, + "maxStateId": 13069, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [268], + "boundingBox": "block" + }, + { + "id": 554, + "name": "cobblestone_slab", + "displayName": "Cobblestone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6972, + "minStateId": 6972, + "maxStateId": 6973, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [269], + "boundingBox": "block" + }, + { + "id": 555, + "name": "brick_slab", + "displayName": "Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13253, + "minStateId": 13253, + "maxStateId": 13254, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [270], + "boundingBox": "block" + }, + { + "id": 556, + "name": "stone_brick_slab", + "displayName": "Stone Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11401, + "minStateId": 11401, + "maxStateId": 11402, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [271], + "boundingBox": "block" + }, + { + "id": 557, + "name": "mud_brick_double_slab", + "displayName": "Mud Brick Slab", + "hardness": 1.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 616, + "minStateId": 616, + "maxStateId": 617, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [272], + "boundingBox": "block" + }, + { + "id": 8024, + "name": "mud_brick_slab", + "displayName": "Mud Brick Slab", + "hardness": 1.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6681, + "minStateId": 6681, + "maxStateId": 6682, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [272], + "boundingBox": "block" + }, + { + "id": 558, + "name": "nether_brick_slab", + "displayName": "Nether Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11149, + "minStateId": 11149, + "maxStateId": 11150, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [273], + "boundingBox": "block" + }, + { + "id": 559, + "name": "quartz_slab", + "displayName": "Quartz Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11875, + "minStateId": 11875, + "maxStateId": 11876, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [274], + "boundingBox": "block" + }, + { + "id": 563, + "name": "smooth_stone", + "displayName": "Smooth Stone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7427, + "minStateId": 7427, + "maxStateId": 7427, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [284], + "boundingBox": "block" + }, + { + "id": 567, + "name": "spruce_fence_gate", + "displayName": "Spruce Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11784, + "minStateId": 11784, + "maxStateId": 11799, + "drops": [751], + "boundingBox": "block" + }, + { + "id": 568, + "name": "birch_fence_gate", + "displayName": "Birch Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6161, + "minStateId": 6161, + "maxStateId": 6176, + "drops": [752], + "boundingBox": "block" + }, + { + "id": 569, + "name": "jungle_fence_gate", + "displayName": "Jungle Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9115, + "minStateId": 9115, + "maxStateId": 9130, + "drops": [753], + "boundingBox": "block" + }, + { + "id": 570, + "name": "acacia_fence_gate", + "displayName": "Acacia Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13303, + "minStateId": 13303, + "maxStateId": 13318, + "drops": [754], + "boundingBox": "block" + }, + { + "id": 571, + "name": "cherry_fence_gate", + "displayName": "Cherry Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14072, + "minStateId": 14072, + "maxStateId": 14087, + "drops": [755], + "boundingBox": "block" + }, + { + "id": 572, + "name": "dark_oak_fence_gate", + "displayName": "Dark Oak Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6954, + "minStateId": 6954, + "maxStateId": 6969, + "drops": [756], + "boundingBox": "block" + }, + { + "id": 573, + "name": "mangrove_fence_gate", + "displayName": "Mangrove Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7494, + "minStateId": 7494, + "maxStateId": 7509, + "drops": [757], + "boundingBox": "block" + }, + { + "id": 574, + "name": "bamboo_fence_gate", + "displayName": "Bamboo Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8807, + "minStateId": 8807, + "maxStateId": 8822, + "drops": [758], + "boundingBox": "block" + }, + { + "id": 575, + "name": "spruce_fence", + "displayName": "Spruce Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1155, + "minStateId": 1155, + "maxStateId": 1155, + "drops": [312], + "boundingBox": "block" + }, + { + "id": 576, + "name": "birch_fence", + "displayName": "Birch Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13878, + "minStateId": 13878, + "maxStateId": 13878, + "drops": [313], + "boundingBox": "block" + }, + { + "id": 577, + "name": "jungle_fence", + "displayName": "Jungle Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1148, + "minStateId": 1148, + "maxStateId": 1148, + "drops": [314], + "boundingBox": "block" + }, + { + "id": 578, + "name": "acacia_fence", + "displayName": "Acacia Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13897, + "minStateId": 13897, + "maxStateId": 13897, + "drops": [315], + "boundingBox": "block" + }, + { + "id": 579, + "name": "cherry_fence", + "displayName": "Cherry Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2425, + "minStateId": 2425, + "maxStateId": 2425, + "drops": [316], + "boundingBox": "block" + }, + { + "id": 580, + "name": "dark_oak_fence", + "displayName": "Dark Oak Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12347, + "minStateId": 12347, + "maxStateId": 12347, + "drops": [317], + "boundingBox": "block" + }, + { + "id": 581, + "name": "mangrove_fence", + "displayName": "Mangrove Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11835, + "minStateId": 11835, + "maxStateId": 11835, + "drops": [318], + "boundingBox": "block" + }, + { + "id": 582, + "name": "bamboo_fence", + "displayName": "Bamboo Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1389, + "minStateId": 1389, + "maxStateId": 1389, + "drops": [319], + "boundingBox": "block" + }, + { + "id": 583, + "name": "spruce_door", + "displayName": "Spruce Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7978, + "minStateId": 7978, + "maxStateId": 8009, + "drops": [712], + "boundingBox": "block" + }, + { + "id": 584, + "name": "birch_door", + "displayName": "Birch Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12348, + "minStateId": 12348, + "maxStateId": 12379, + "drops": [713], + "boundingBox": "block" + }, + { + "id": 585, + "name": "jungle_door", + "displayName": "Jungle Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11274, + "minStateId": 11274, + "maxStateId": 11305, + "drops": [714], + "boundingBox": "block" + }, + { + "id": 586, + "name": "acacia_door", + "displayName": "Acacia Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7232, + "minStateId": 7232, + "maxStateId": 7263, + "drops": [715], + "boundingBox": "block" + }, + { + "id": 587, + "name": "cherry_door", + "displayName": "Cherry Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7084, + "minStateId": 7084, + "maxStateId": 7115, + "drops": [716], + "boundingBox": "block" + }, + { + "id": 588, + "name": "dark_oak_door", + "displayName": "Dark Oak Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9497, + "minStateId": 9497, + "maxStateId": 9528, + "drops": [717], + "boundingBox": "block" + }, + { + "id": 589, + "name": "mangrove_door", + "displayName": "Mangrove Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11534, + "minStateId": 11534, + "maxStateId": 11565, + "drops": [718], + "boundingBox": "block" + }, + { + "id": 590, + "name": "bamboo_door", + "displayName": "Bamboo Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 751, + "minStateId": 751, + "maxStateId": 782, + "drops": [719], + "boundingBox": "block" + }, + { + "id": 591, + "name": "end_rod", + "displayName": "End Rod", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 14, + "filterLight": 0, + "defaultState": 10500, + "minStateId": 10500, + "maxStateId": 10505, + "drops": [292], + "boundingBox": "block" + }, + { + "id": 592, + "name": "chorus_plant", + "displayName": "Chorus Plant", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9282, + "minStateId": 9282, + "maxStateId": 9282, + "drops": [1150], + "boundingBox": "block" + }, + { + "id": 593, + "name": "chorus_flower", + "displayName": "Chorus Flower", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 7369, + "minStateId": 7369, + "maxStateId": 7374, + "drops": [], + "boundingBox": "block" + }, + { + "id": 594, + "name": "purpur_block", + "displayName": "Purpur Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13431, + "minStateId": 13431, + "maxStateId": 13442, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [295], + "boundingBox": "block" + }, + { + "id": 596, + "name": "purpur_stairs", + "displayName": "Purpur Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13482, + "minStateId": 13482, + "maxStateId": 13489, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [297], + "boundingBox": "block" + }, + { + "id": 597, + "name": "end_bricks", + "displayName": "End Stone Bricks", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 741, + "minStateId": 741, + "maxStateId": 741, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [378], + "boundingBox": "block" + }, + { + "id": 598, + "name": "torchflower_crop", + "displayName": "Torchflower Crop", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11116, + "minStateId": 11116, + "maxStateId": 11123, + "drops": [1152], + "boundingBox": "empty" + }, + { + "id": 599, + "name": "pitcher_crop", + "displayName": "Pitcher Crop", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 688, + "minStateId": 688, + "maxStateId": 703, + "drops": [1153], + "boundingBox": "block" + }, + { + "id": 600, + "name": "pitcher_plant", + "displayName": "Pitcher Plant", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6140, + "minStateId": 6140, + "maxStateId": 6141, + "drops": [232], + "boundingBox": "empty" + }, + { + "id": 601, + "name": "beetroot", + "displayName": "Beetroots", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9043, + "minStateId": 9043, + "maxStateId": 9050, + "drops": [1155], + "boundingBox": "empty" + }, + { + "id": 602, + "name": "grass_path", + "displayName": "Dirt Path", + "hardness": 0.65, + "resistance": 0.65, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13898, + "minStateId": 13898, + "maxStateId": 13898, + "drops": [28], + "boundingBox": "block" + }, + { + "id": 603, + "name": "end_gateway", + "displayName": "End Gateway", + "hardness": -1, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 555, + "minStateId": 555, + "maxStateId": 555, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 604, + "name": "repeating_command_block", + "displayName": "Repeating Command Block", + "hardness": -1, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13458, + "minStateId": 13458, + "maxStateId": 13469, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 605, + "name": "chain_command_block", + "displayName": "Chain Command Block", + "hardness": -1, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11767, + "minStateId": 11767, + "maxStateId": 11778, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 606, + "name": "frosted_ice", + "displayName": "Frosted Ice", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 8010, + "minStateId": 8010, + "maxStateId": 8013, + "drops": [], + "boundingBox": "block" + }, + { + "id": 607, + "name": "magma", + "displayName": "Magma Block", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 3, + "filterLight": 15, + "defaultState": 13822, + "minStateId": 13822, + "maxStateId": 13822, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [516], + "boundingBox": "block" + }, + { + "id": 608, + "name": "nether_wart_block", + "displayName": "Nether Wart Block", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7083, + "minStateId": 7083, + "maxStateId": 7083, + "drops": [517], + "boundingBox": "block" + }, + { + "id": 609, + "name": "red_nether_brick", + "displayName": "Red Nether Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 558, + "minStateId": 558, + "maxStateId": 558, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [519], + "boundingBox": "block" + }, + { + "id": 610, + "name": "bone_block", + "displayName": "Bone Block", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7028, + "minStateId": 7028, + "maxStateId": 7039, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [520], + "boundingBox": "block" + }, + { + "id": 611, + "name": "structure_void", + "displayName": "Structure Void", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6975, + "minStateId": 6975, + "maxStateId": 6976, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 612, + "name": "observer", + "displayName": "Observer", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5484, + "minStateId": 5484, + "maxStateId": 5495, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [666], + "boundingBox": "block" + }, + { + "id": 613, + "name": "undyed_shulker_box", + "displayName": "Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 6053, + "minStateId": 6053, + "maxStateId": 6053, + "drops": [522], + "boundingBox": "block" + }, + { + "id": 614, + "name": "white_shulker_box", + "displayName": "White Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 1121, + "minStateId": 1121, + "maxStateId": 1121, + "drops": [523], + "boundingBox": "block" + }, + { + "id": 615, + "name": "orange_shulker_box", + "displayName": "Orange Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11346, + "minStateId": 11346, + "maxStateId": 11346, + "drops": [524], + "boundingBox": "block" + }, + { + "id": 616, + "name": "magenta_shulker_box", + "displayName": "Magenta Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 742, + "minStateId": 742, + "maxStateId": 742, + "drops": [525], + "boundingBox": "block" + }, + { + "id": 617, + "name": "light_blue_shulker_box", + "displayName": "Light Blue Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 12186, + "minStateId": 12186, + "maxStateId": 12186, + "drops": [526], + "boundingBox": "block" + }, + { + "id": 618, + "name": "yellow_shulker_box", + "displayName": "Yellow Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 116, + "minStateId": 116, + "maxStateId": 116, + "drops": [527], + "boundingBox": "block" + }, + { + "id": 619, + "name": "lime_shulker_box", + "displayName": "Lime Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 1052, + "minStateId": 1052, + "maxStateId": 1052, + "drops": [528], + "boundingBox": "block" + }, + { + "id": 620, + "name": "pink_shulker_box", + "displayName": "Pink Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 7203, + "minStateId": 7203, + "maxStateId": 7203, + "drops": [529], + "boundingBox": "block" + }, + { + "id": 621, + "name": "gray_shulker_box", + "displayName": "Gray Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9099, + "minStateId": 9099, + "maxStateId": 9099, + "drops": [530], + "boundingBox": "block" + }, + { + "id": 622, + "name": "light_gray_shulker_box", + "displayName": "Light Gray Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10518, + "minStateId": 10518, + "maxStateId": 10518, + "drops": [531], + "boundingBox": "block" + }, + { + "id": 623, + "name": "cyan_shulker_box", + "displayName": "Cyan Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 12253, + "minStateId": 12253, + "maxStateId": 12253, + "drops": [532], + "boundingBox": "block" + }, + { + "id": 624, + "name": "purple_shulker_box", + "displayName": "Purple Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13079, + "minStateId": 13079, + "maxStateId": 13079, + "drops": [533], + "boundingBox": "block" + }, + { + "id": 625, + "name": "blue_shulker_box", + "displayName": "Blue Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11395, + "minStateId": 11395, + "maxStateId": 11395, + "drops": [534], + "boundingBox": "block" + }, + { + "id": 626, + "name": "brown_shulker_box", + "displayName": "Brown Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 12095, + "minStateId": 12095, + "maxStateId": 12095, + "drops": [535], + "boundingBox": "block" + }, + { + "id": 627, + "name": "green_shulker_box", + "displayName": "Green Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11672, + "minStateId": 11672, + "maxStateId": 11672, + "drops": [536], + "boundingBox": "block" + }, + { + "id": 628, + "name": "red_shulker_box", + "displayName": "Red Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 7264, + "minStateId": 7264, + "maxStateId": 7264, + "drops": [537], + "boundingBox": "block" + }, + { + "id": 629, + "name": "black_shulker_box", + "displayName": "Black Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11112, + "minStateId": 11112, + "maxStateId": 11112, + "drops": [538], + "boundingBox": "block" + }, + { + "id": 630, + "name": "white_glazed_terracotta", + "displayName": "White Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9350, + "minStateId": 9350, + "maxStateId": 9355, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [539], + "boundingBox": "block" + }, + { + "id": 631, + "name": "orange_glazed_terracotta", + "displayName": "Orange Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2605, + "minStateId": 2605, + "maxStateId": 2610, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [540], + "boundingBox": "block" + }, + { + "id": 632, + "name": "magenta_glazed_terracotta", + "displayName": "Magenta Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2435, + "minStateId": 2435, + "maxStateId": 2440, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [541], + "boundingBox": "block" + }, + { + "id": 633, + "name": "light_blue_glazed_terracotta", + "displayName": "Light Blue Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9245, + "minStateId": 9245, + "maxStateId": 9250, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [542], + "boundingBox": "block" + }, + { + "id": 634, + "name": "yellow_glazed_terracotta", + "displayName": "Yellow Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2393, + "minStateId": 2393, + "maxStateId": 2398, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [543], + "boundingBox": "block" + }, + { + "id": 635, + "name": "lime_glazed_terracotta", + "displayName": "Lime Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 650, + "minStateId": 650, + "maxStateId": 655, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [544], + "boundingBox": "block" + }, + { + "id": 636, + "name": "pink_glazed_terracotta", + "displayName": "Pink Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11735, + "minStateId": 11735, + "maxStateId": 11740, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [545], + "boundingBox": "block" + }, + { + "id": 637, + "name": "gray_glazed_terracotta", + "displayName": "Gray Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14088, + "minStateId": 14088, + "maxStateId": 14093, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [546], + "boundingBox": "block" + }, + { + "id": 638, + "name": "silver_glazed_terracotta", + "displayName": "Light Gray Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5502, + "minStateId": 5502, + "maxStateId": 5507, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [547], + "boundingBox": "block" + }, + { + "id": 639, + "name": "cyan_glazed_terracotta", + "displayName": "Cyan Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9108, + "minStateId": 9108, + "maxStateId": 9113, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [548], + "boundingBox": "block" + }, + { + "id": 640, + "name": "purple_glazed_terracotta", + "displayName": "Purple Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12233, + "minStateId": 12233, + "maxStateId": 12238, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [549], + "boundingBox": "block" + }, + { + "id": 641, + "name": "blue_glazed_terracotta", + "displayName": "Blue Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9239, + "minStateId": 9239, + "maxStateId": 9244, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [550], + "boundingBox": "block" + }, + { + "id": 642, + "name": "brown_glazed_terracotta", + "displayName": "Brown Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5904, + "minStateId": 5904, + "maxStateId": 5909, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [551], + "boundingBox": "block" + }, + { + "id": 643, + "name": "green_glazed_terracotta", + "displayName": "Green Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11810, + "minStateId": 11810, + "maxStateId": 11815, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [552], + "boundingBox": "block" + }, + { + "id": 644, + "name": "red_glazed_terracotta", + "displayName": "Red Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6948, + "minStateId": 6948, + "maxStateId": 6953, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [553], + "boundingBox": "block" + }, + { + "id": 645, + "name": "black_glazed_terracotta", + "displayName": "Black Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10006, + "minStateId": 10006, + "maxStateId": 10011, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [554], + "boundingBox": "block" + }, + { + "id": 646, + "name": "white_concrete", + "displayName": "White Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13884, + "minStateId": 13884, + "maxStateId": 13884, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [555], + "boundingBox": "block" + }, + { + "id": 647, + "name": "orange_concrete", + "displayName": "Orange Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11920, + "minStateId": 11920, + "maxStateId": 11920, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [556], + "boundingBox": "block" + }, + { + "id": 648, + "name": "magenta_concrete", + "displayName": "Magenta Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7186, + "minStateId": 7186, + "maxStateId": 7186, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [557], + "boundingBox": "block" + }, + { + "id": 649, + "name": "light_blue_concrete", + "displayName": "Light Blue Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13142, + "minStateId": 13142, + "maxStateId": 13142, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [558], + "boundingBox": "block" + }, + { + "id": 650, + "name": "yellow_concrete", + "displayName": "Yellow Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5994, + "minStateId": 5994, + "maxStateId": 5994, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [559], + "boundingBox": "block" + }, + { + "id": 651, + "name": "lime_concrete", + "displayName": "Lime Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7447, + "minStateId": 7447, + "maxStateId": 7447, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [560], + "boundingBox": "block" + }, + { + "id": 652, + "name": "pink_concrete", + "displayName": "Pink Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5516, + "minStateId": 5516, + "maxStateId": 5516, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [561], + "boundingBox": "block" + }, + { + "id": 653, + "name": "gray_concrete", + "displayName": "Gray Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13070, + "minStateId": 13070, + "maxStateId": 13070, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [562], + "boundingBox": "block" + }, + { + "id": 654, + "name": "light_gray_concrete", + "displayName": "Light Gray Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1979, + "minStateId": 1979, + "maxStateId": 1979, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [563], + "boundingBox": "block" + }, + { + "id": 655, + "name": "cyan_concrete", + "displayName": "Cyan Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12960, + "minStateId": 12960, + "maxStateId": 12960, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [564], + "boundingBox": "block" + }, + { + "id": 656, + "name": "purple_concrete", + "displayName": "Purple Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6977, + "minStateId": 6977, + "maxStateId": 6977, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [565], + "boundingBox": "block" + }, + { + "id": 657, + "name": "blue_concrete", + "displayName": "Blue Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12970, + "minStateId": 12970, + "maxStateId": 12970, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [566], + "boundingBox": "block" + }, + { + "id": 658, + "name": "brown_concrete", + "displayName": "Brown Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11342, + "minStateId": 11342, + "maxStateId": 11342, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [567], + "boundingBox": "block" + }, + { + "id": 659, + "name": "green_concrete", + "displayName": "Green Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10509, + "minStateId": 10509, + "maxStateId": 10509, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [568], + "boundingBox": "block" + }, + { + "id": 660, + "name": "red_concrete", + "displayName": "Red Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13415, + "minStateId": 13415, + "maxStateId": 13415, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [569], + "boundingBox": "block" + }, + { + "id": 661, + "name": "black_concrete", + "displayName": "Black Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11901, + "minStateId": 11901, + "maxStateId": 11901, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [570], + "boundingBox": "block" + }, + { + "id": 662, + "name": "white_concrete_powder", + "displayName": "White Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8535, + "minStateId": 8535, + "maxStateId": 8535, + "drops": [571], + "boundingBox": "block" + }, + { + "id": 663, + "name": "orange_concrete_powder", + "displayName": "Orange Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14061, + "minStateId": 14061, + "maxStateId": 14061, + "drops": [572], + "boundingBox": "block" + }, + { + "id": 664, + "name": "magenta_concrete_powder", + "displayName": "Magenta Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7282, + "minStateId": 7282, + "maxStateId": 7282, + "drops": [573], + "boundingBox": "block" + }, + { + "id": 665, + "name": "light_blue_concrete_powder", + "displayName": "Light Blue Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 65, + "minStateId": 65, + "maxStateId": 65, + "drops": [574], + "boundingBox": "block" + }, + { + "id": 666, + "name": "yellow_concrete_powder", + "displayName": "Yellow Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13289, + "minStateId": 13289, + "maxStateId": 13289, + "drops": [575], + "boundingBox": "block" + }, + { + "id": 667, + "name": "lime_concrete_powder", + "displayName": "Lime Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13809, + "minStateId": 13809, + "maxStateId": 13809, + "drops": [576], + "boundingBox": "block" + }, + { + "id": 668, + "name": "pink_concrete_powder", + "displayName": "Pink Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7081, + "minStateId": 7081, + "maxStateId": 7081, + "drops": [577], + "boundingBox": "block" + }, + { + "id": 669, + "name": "gray_concrete_powder", + "displayName": "Gray Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13067, + "minStateId": 13067, + "maxStateId": 13067, + "drops": [578], + "boundingBox": "block" + }, + { + "id": 670, + "name": "light_gray_concrete_powder", + "displayName": "Light Gray Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12943, + "minStateId": 12943, + "maxStateId": 12943, + "drops": [579], + "boundingBox": "block" + }, + { + "id": 671, + "name": "cyan_concrete_powder", + "displayName": "Cyan Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5903, + "minStateId": 5903, + "maxStateId": 5903, + "drops": [580], + "boundingBox": "block" + }, + { + "id": 672, + "name": "purple_concrete_powder", + "displayName": "Purple Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11734, + "minStateId": 11734, + "maxStateId": 11734, + "drops": [581], + "boundingBox": "block" + }, + { + "id": 673, + "name": "blue_concrete_powder", + "displayName": "Blue Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11919, + "minStateId": 11919, + "maxStateId": 11919, + "drops": [582], + "boundingBox": "block" + }, + { + "id": 674, + "name": "brown_concrete_powder", + "displayName": "Brown Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10083, + "minStateId": 10083, + "maxStateId": 10083, + "drops": [583], + "boundingBox": "block" + }, + { + "id": 675, + "name": "green_concrete_powder", + "displayName": "Green Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12239, + "minStateId": 12239, + "maxStateId": 12239, + "drops": [584], + "boundingBox": "block" + }, + { + "id": 676, + "name": "red_concrete_powder", + "displayName": "Red Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12942, + "minStateId": 12942, + "maxStateId": 12942, + "drops": [585], + "boundingBox": "block" + }, + { + "id": 677, + "name": "black_concrete_powder", + "displayName": "Black Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1159, + "minStateId": 1159, + "maxStateId": 1159, + "drops": [586], + "boundingBox": "block" + }, + { + "id": 679, + "name": "kelp", + "displayName": "Kelp Plant", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9180, + "minStateId": 9180, + "maxStateId": 9205, + "drops": [244], + "boundingBox": "empty" + }, + { + "id": 680, + "name": "dried_kelp_block", + "displayName": "Dried Kelp Block", + "hardness": 0.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13789, + "minStateId": 13789, + "maxStateId": 13789, + "drops": [923], + "boundingBox": "block" + }, + { + "id": 681, + "name": "turtle_egg", + "displayName": "Turtle Egg", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13810, + "minStateId": 13810, + "maxStateId": 13821, + "drops": [], + "boundingBox": "block" + }, + { + "id": 682, + "name": "sniffer_egg", + "displayName": "Sniffer Egg", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12222, + "minStateId": 12222, + "maxStateId": 12224, + "drops": [588], + "boundingBox": "block" + }, + { + "id": 683, + "name": "dead_tube_coral_block", + "displayName": "Dead Tube Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6600, + "minStateId": 6600, + "maxStateId": 6600, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [589], + "boundingBox": "block" + }, + { + "id": 684, + "name": "dead_brain_coral_block", + "displayName": "Dead Brain Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11834, + "minStateId": 11834, + "maxStateId": 11834, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [590], + "boundingBox": "block" + }, + { + "id": 685, + "name": "dead_bubble_coral_block", + "displayName": "Dead Bubble Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2416, + "minStateId": 2416, + "maxStateId": 2416, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [591], + "boundingBox": "block" + }, + { + "id": 686, + "name": "dead_fire_coral_block", + "displayName": "Dead Fire Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2429, + "minStateId": 2429, + "maxStateId": 2429, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [592], + "boundingBox": "block" + }, + { + "id": 687, + "name": "dead_horn_coral_block", + "displayName": "Dead Horn Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11660, + "minStateId": 11660, + "maxStateId": 11660, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [593], + "boundingBox": "block" + }, + { + "id": 688, + "name": "tube_coral_block", + "displayName": "Tube Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13208, + "minStateId": 13208, + "maxStateId": 13208, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [589], + "boundingBox": "block" + }, + { + "id": 689, + "name": "brain_coral_block", + "displayName": "Brain Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9380, + "minStateId": 9380, + "maxStateId": 9380, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [590], + "boundingBox": "block" + }, + { + "id": 690, + "name": "bubble_coral_block", + "displayName": "Bubble Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7074, + "minStateId": 7074, + "maxStateId": 7074, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [591], + "boundingBox": "block" + }, + { + "id": 691, + "name": "fire_coral_block", + "displayName": "Fire Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7281, + "minStateId": 7281, + "maxStateId": 7281, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [592], + "boundingBox": "block" + }, + { + "id": 692, + "name": "horn_coral_block", + "displayName": "Horn Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9042, + "minStateId": 9042, + "maxStateId": 9042, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [593], + "boundingBox": "block" + }, + { + "id": 693, + "name": "dead_tube_coral", + "displayName": "Dead Tube Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 7082, + "minStateId": 7082, + "maxStateId": 7082, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 694, + "name": "dead_brain_coral", + "displayName": "Dead Brain Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 12857, + "minStateId": 12857, + "maxStateId": 12857, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 695, + "name": "dead_bubble_coral", + "displayName": "Dead Bubble Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 12945, + "minStateId": 12945, + "maxStateId": 12945, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 696, + "name": "dead_fire_coral", + "displayName": "Dead Fire Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11400, + "minStateId": 11400, + "maxStateId": 11400, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 697, + "name": "dead_horn_coral", + "displayName": "Dead Horn Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10570, + "minStateId": 10570, + "maxStateId": 10570, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 698, + "name": "tube_coral", + "displayName": "Tube Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13490, + "minStateId": 13490, + "maxStateId": 13490, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 699, + "name": "brain_coral", + "displayName": "Brain Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 1965, + "minStateId": 1965, + "maxStateId": 1965, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 700, + "name": "bubble_coral", + "displayName": "Bubble Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11345, + "minStateId": 11345, + "maxStateId": 11345, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 701, + "name": "fire_coral", + "displayName": "Fire Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 1797, + "minStateId": 1797, + "maxStateId": 1797, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 702, + "name": "horn_coral", + "displayName": "Horn Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 5993, + "minStateId": 5993, + "maxStateId": 5993, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 703, + "name": "dead_tube_coral_fan", + "displayName": "Dead Tube Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11909, + "minStateId": 11909, + "maxStateId": 11910, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 704, + "name": "dead_brain_coral_fan", + "displayName": "Dead Brain Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 672, + "minStateId": 672, + "maxStateId": 673, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 705, + "name": "dead_bubble_coral_fan", + "displayName": "Dead Bubble Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 633, + "minStateId": 633, + "maxStateId": 634, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 706, + "name": "dead_fire_coral_fan", + "displayName": "Dead Fire Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11923, + "minStateId": 11923, + "maxStateId": 11924, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 707, + "name": "dead_horn_coral_fan", + "displayName": "Dead Horn Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 12303, + "minStateId": 12303, + "maxStateId": 12304, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 708, + "name": "tube_coral_fan", + "displayName": "Tube Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 678, + "minStateId": 678, + "maxStateId": 679, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 709, + "name": "brain_coral_fan", + "displayName": "Brain Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 2014, + "minStateId": 2014, + "maxStateId": 2015, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 710, + "name": "bubble_coral_fan", + "displayName": "Bubble Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 638, + "minStateId": 638, + "maxStateId": 639, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 711, + "name": "fire_coral_fan", + "displayName": "Fire Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11749, + "minStateId": 11749, + "maxStateId": 11750, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 712, + "name": "horn_coral_fan", + "displayName": "Horn Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11670, + "minStateId": 11670, + "maxStateId": 11671, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 713, + "name": "coral_fan_hang", + "displayName": "Dead Tube Coral Wall Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 7375, + "minStateId": 7375, + "maxStateId": 7390, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 715, + "name": "coral_fan_hang2", + "displayName": "Dead Bubble Coral Wall Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 6871, + "minStateId": 6871, + "maxStateId": 6886, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 717, + "name": "coral_fan_hang3", + "displayName": "Dead Horn Coral Wall Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 6887, + "minStateId": 6887, + "maxStateId": 6902, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 723, + "name": "sea_pickle", + "displayName": "Sea Pickle", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 6, + "filterLight": 1, + "defaultState": 10059, + "minStateId": 10059, + "maxStateId": 10066, + "drops": [201], + "boundingBox": "block" + }, + { + "id": 724, + "name": "blue_ice", + "displayName": "Blue Ice", + "hardness": 2.8, + "resistance": 2.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12252, + "minStateId": 12252, + "maxStateId": 12252, + "drops": [], + "boundingBox": "block" + }, + { + "id": 725, + "name": "conduit", + "displayName": "Conduit", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 7026, + "minStateId": 7026, + "maxStateId": 7026, + "drops": [620], + "boundingBox": "block" + }, + { + "id": 726, + "name": "bamboo_sapling", + "displayName": "Bamboo Shoot", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13272, + "minStateId": 13272, + "maxStateId": 13273, + "drops": [251], + "boundingBox": "empty" + }, + { + "id": 727, + "name": "bamboo", + "displayName": "Bamboo", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6056, + "minStateId": 6056, + "maxStateId": 6067, + "drops": [251], + "boundingBox": "block" + }, + { + "id": 731, + "name": "bubble_column", + "displayName": "Bubble Column", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9560, + "minStateId": 9560, + "maxStateId": 9561, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 732, + "name": "polished_granite_stairs", + "displayName": "Polished Granite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6924, + "minStateId": 6924, + "maxStateId": 6931, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [621], + "boundingBox": "block" + }, + { + "id": 733, + "name": "smooth_red_sandstone_stairs", + "displayName": "Smooth Red Sandstone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9323, + "minStateId": 9323, + "maxStateId": 9330, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [622], + "boundingBox": "block" + }, + { + "id": 734, + "name": "mossy_stone_brick_stairs", + "displayName": "Mossy Stone Brick Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10492, + "minStateId": 10492, + "maxStateId": 10499, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [623], + "boundingBox": "block" + }, + { + "id": 735, + "name": "polished_diorite_stairs", + "displayName": "Polished Diorite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11911, + "minStateId": 11911, + "maxStateId": 11918, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [624], + "boundingBox": "block" + }, + { + "id": 736, + "name": "mossy_cobblestone_stairs", + "displayName": "Mossy Cobblestone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6863, + "minStateId": 6863, + "maxStateId": 6870, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [625], + "boundingBox": "block" + }, + { + "id": 737, + "name": "end_brick_stairs", + "displayName": "End Stone Brick Stairs", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11512, + "minStateId": 11512, + "maxStateId": 11519, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [626], + "boundingBox": "block" + }, + { + "id": 738, + "name": "normal_stone_stairs", + "displayName": "Stone Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1390, + "minStateId": 1390, + "maxStateId": 1397, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [627], + "boundingBox": "block" + }, + { + "id": 739, + "name": "smooth_sandstone_stairs", + "displayName": "Smooth Sandstone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5998, + "minStateId": 5998, + "maxStateId": 6005, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [628], + "boundingBox": "block" + }, + { + "id": 740, + "name": "smooth_quartz_stairs", + "displayName": "Smooth Quartz Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13417, + "minStateId": 13417, + "maxStateId": 13424, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [629], + "boundingBox": "block" + }, + { + "id": 741, + "name": "granite_stairs", + "displayName": "Granite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5508, + "minStateId": 5508, + "maxStateId": 5515, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [630], + "boundingBox": "block" + }, + { + "id": 742, + "name": "andesite_stairs", + "displayName": "Andesite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9067, + "minStateId": 9067, + "maxStateId": 9074, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [631], + "boundingBox": "block" + }, + { + "id": 743, + "name": "red_nether_brick_stairs", + "displayName": "Red Nether Brick Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11802, + "minStateId": 11802, + "maxStateId": 11809, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [632], + "boundingBox": "block" + }, + { + "id": 744, + "name": "polished_andesite_stairs", + "displayName": "Polished Andesite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12255, + "minStateId": 12255, + "maxStateId": 12262, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [633], + "boundingBox": "block" + }, + { + "id": 745, + "name": "diorite_stairs", + "displayName": "Diorite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7219, + "minStateId": 7219, + "maxStateId": 7226, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [634], + "boundingBox": "block" + }, + { + "id": 746, + "name": "stone_block_slab3", + "displayName": "Polished Granite Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9587, + "minStateId": 9587, + "maxStateId": 9602, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [639], + "boundingBox": "block" + }, + { + "id": 8025, + "name": "double_stone_block_slab3", + "displayName": "Polished Granite Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11618, + "minStateId": 11618, + "maxStateId": 11633, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [639], + "boundingBox": "block" + }, + { + "id": 765, + "name": "mud_brick_wall", + "displayName": "Mud Brick Wall", + "hardness": 1.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2194, + "minStateId": 2194, + "maxStateId": 2355, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [405], + "boundingBox": "block" + }, + { + "id": 772, + "name": "scaffolding", + "displayName": "Scaffolding", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5945, + "minStateId": 5945, + "maxStateId": 5960, + "drops": [656], + "boundingBox": "block" + }, + { + "id": 773, + "name": "loom", + "displayName": "Loom", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6596, + "minStateId": 6596, + "maxStateId": 6599, + "drops": [1191], + "boundingBox": "block" + }, + { + "id": 774, + "name": "barrel", + "displayName": "Barrel", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7357, + "minStateId": 7357, + "maxStateId": 7368, + "drops": [1202], + "boundingBox": "block" + }, + { + "id": 775, + "name": "smoker", + "displayName": "Smoker", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1791, + "minStateId": 1791, + "maxStateId": 1794, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1203], + "boundingBox": "block" + }, + { + "id": 8026, + "name": "lit_smoker", + "displayName": "Smoker", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13410, + "minStateId": 13410, + "maxStateId": 13413, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1203], + "boundingBox": "block" + }, + { + "id": 776, + "name": "lit_blast_furnace", + "displayName": "Blast Furnace", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12340, + "minStateId": 12340, + "maxStateId": 12343, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1204], + "boundingBox": "block" + }, + { + "id": 8027, + "name": "blast_furnace", + "displayName": "Blast Furnace", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13278, + "minStateId": 13278, + "maxStateId": 13281, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1204], + "boundingBox": "block" + }, + { + "id": 777, + "name": "cartography_table", + "displayName": "Cartography Table", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14127, + "minStateId": 14127, + "maxStateId": 14127, + "drops": [1205], + "boundingBox": "block" + }, + { + "id": 778, + "name": "fletching_table", + "displayName": "Fletching Table", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10001, + "minStateId": 10001, + "maxStateId": 10001, + "drops": [1206], + "boundingBox": "block" + }, + { + "id": 779, + "name": "grindstone", + "displayName": "Grindstone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13837, + "minStateId": 13837, + "maxStateId": 13852, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1207], + "boundingBox": "block" + }, + { + "id": 780, + "name": "lectern", + "displayName": "Lectern", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12159, + "minStateId": 12159, + "maxStateId": 12166, + "drops": [670], + "boundingBox": "block" + }, + { + "id": 781, + "name": "smithing_table", + "displayName": "Smithing Table", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6101, + "minStateId": 6101, + "maxStateId": 6101, + "drops": [1208], + "boundingBox": "block" + }, + { + "id": 782, + "name": "stonecutter_block", + "displayName": "Stonecutter", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13285, + "minStateId": 13285, + "maxStateId": 13288, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1209], + "boundingBox": "block" + }, + { + "id": 783, + "name": "bell", + "displayName": "Bell", + "hardness": 5, + "resistance": 5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12127, + "minStateId": 12127, + "maxStateId": 12158, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1210], + "boundingBox": "block" + }, + { + "id": 784, + "name": "lantern", + "displayName": "Lantern", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 12305, + "minStateId": 12305, + "maxStateId": 12306, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1211], + "boundingBox": "block" + }, + { + "id": 785, + "name": "soul_lantern", + "displayName": "Soul Lantern", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 9530, + "minStateId": 9530, + "maxStateId": 9531, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1212], + "boundingBox": "block" + }, + { + "id": 786, + "name": "campfire", + "displayName": "Campfire", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 9562, + "minStateId": 9562, + "maxStateId": 9569, + "drops": [803], + "boundingBox": "block" + }, + { + "id": 787, + "name": "soul_campfire", + "displayName": "Soul Campfire", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 13854, + "minStateId": 13854, + "maxStateId": 13861, + "drops": [327], + "boundingBox": "block" + }, + { + "id": 788, + "name": "sweet_berry_bush", + "displayName": "Sweet Berry Bush", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11086, + "minStateId": 11086, + "maxStateId": 11093, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 789, + "name": "warped_stem", + "displayName": "Warped Stem", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11667, + "minStateId": 11667, + "maxStateId": 11669, + "drops": [143], + "boundingBox": "block" + }, + { + "id": 790, + "name": "stripped_warped_stem", + "displayName": "Stripped Warped Stem", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13102, + "minStateId": 13102, + "maxStateId": 13104, + "drops": [154], + "boundingBox": "block" + }, + { + "id": 791, + "name": "warped_hyphae", + "displayName": "Warped Hyphae", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10514, + "minStateId": 10514, + "maxStateId": 10516, + "drops": [175], + "boundingBox": "block" + }, + { + "id": 792, + "name": "stripped_warped_hyphae", + "displayName": "Stripped Warped Hyphae", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9356, + "minStateId": 9356, + "maxStateId": 9358, + "drops": [164], + "boundingBox": "block" + }, + { + "id": 793, + "name": "warped_nylium", + "displayName": "Warped Nylium", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11477, + "minStateId": 11477, + "maxStateId": 11477, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [325], + "boundingBox": "block" + }, + { + "id": 794, + "name": "warped_fungus", + "displayName": "Warped Fungus", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 748, + "minStateId": 748, + "maxStateId": 748, + "drops": [237], + "boundingBox": "empty" + }, + { + "id": 795, + "name": "warped_wart_block", + "displayName": "Warped Wart Block", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10517, + "minStateId": 10517, + "maxStateId": 10517, + "drops": [518], + "boundingBox": "block" + }, + { + "id": 796, + "name": "warped_roots", + "displayName": "Warped Roots", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7185, + "minStateId": 7185, + "maxStateId": 7185, + "drops": [239], + "boundingBox": "empty" + }, + { + "id": 797, + "name": "nether_sprouts", + "displayName": "Nether Sprouts", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11658, + "minStateId": 11658, + "maxStateId": 11658, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 798, + "name": "crimson_stem", + "displayName": "Crimson Stem", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10506, + "minStateId": 10506, + "maxStateId": 10508, + "drops": [142], + "boundingBox": "block" + }, + { + "id": 799, + "name": "stripped_crimson_stem", + "displayName": "Stripped Crimson Stem", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12167, + "minStateId": 12167, + "maxStateId": 12169, + "drops": [153], + "boundingBox": "block" + }, + { + "id": 800, + "name": "crimson_hyphae", + "displayName": "Crimson Hyphae", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7116, + "minStateId": 7116, + "maxStateId": 7118, + "drops": [174], + "boundingBox": "block" + }, + { + "id": 801, + "name": "stripped_crimson_hyphae", + "displayName": "Stripped Crimson Hyphae", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11675, + "minStateId": 11675, + "maxStateId": 11677, + "drops": [163], + "boundingBox": "block" + }, + { + "id": 802, + "name": "crimson_nylium", + "displayName": "Crimson Nylium", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6974, + "minStateId": 6974, + "maxStateId": 6974, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [325], + "boundingBox": "block" + }, + { + "id": 803, + "name": "crimson_fungus", + "displayName": "Crimson Fungus", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13477, + "minStateId": 13477, + "maxStateId": 13477, + "drops": [236], + "boundingBox": "empty" + }, + { + "id": 804, + "name": "shroomlight", + "displayName": "Shroomlight", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 8806, + "minStateId": 8806, + "maxStateId": 8806, + "drops": [1217], + "boundingBox": "block" + }, + { + "id": 806, + "name": "weeping_vines", + "displayName": "Weeping Vines Plant", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9256, + "minStateId": 9256, + "maxStateId": 9281, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 808, + "name": "twisting_vines", + "displayName": "Twisting Vines Plant", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9468, + "minStateId": 9468, + "maxStateId": 9493, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 809, + "name": "crimson_roots", + "displayName": "Crimson Roots", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13282, + "minStateId": 13282, + "maxStateId": 13282, + "drops": [238], + "boundingBox": "empty" + }, + { + "id": 810, + "name": "crimson_planks", + "displayName": "Crimson Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8584, + "minStateId": 8584, + "maxStateId": 8584, + "drops": [45], + "boundingBox": "block" + }, + { + "id": 811, + "name": "warped_planks", + "displayName": "Warped Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2400, + "minStateId": 2400, + "maxStateId": 2400, + "drops": [46], + "boundingBox": "block" + }, + { + "id": 812, + "name": "crimson_double_slab", + "displayName": "Crimson Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1972, + "minStateId": 1972, + "maxStateId": 1973, + "drops": [262], + "boundingBox": "block" + }, + { + "id": 8028, + "name": "crimson_slab", + "displayName": "Crimson Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10512, + "minStateId": 10512, + "maxStateId": 10513, + "drops": [262], + "boundingBox": "block" + }, + { + "id": 813, + "name": "warped_double_slab", + "displayName": "Warped Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7204, + "minStateId": 7204, + "maxStateId": 7205, + "drops": [263], + "boundingBox": "block" + }, + { + "id": 8029, + "name": "warped_slab", + "displayName": "Warped Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11665, + "minStateId": 11665, + "maxStateId": 11666, + "drops": [263], + "boundingBox": "block" + }, + { + "id": 814, + "name": "crimson_pressure_plate", + "displayName": "Crimson Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14107, + "minStateId": 14107, + "maxStateId": 14122, + "drops": [708], + "boundingBox": "empty" + }, + { + "id": 815, + "name": "warped_pressure_plate", + "displayName": "Warped Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 708, + "minStateId": 708, + "maxStateId": 723, + "drops": [709], + "boundingBox": "empty" + }, + { + "id": 816, + "name": "crimson_fence", + "displayName": "Crimson Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13807, + "minStateId": 13807, + "maxStateId": 13807, + "drops": [320], + "boundingBox": "block" + }, + { + "id": 817, + "name": "warped_fence", + "displayName": "Warped Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10057, + "minStateId": 10057, + "maxStateId": 10057, + "drops": [321], + "boundingBox": "block" + }, + { + "id": 818, + "name": "crimson_trapdoor", + "displayName": "Crimson Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7160, + "minStateId": 7160, + "maxStateId": 7175, + "drops": [740], + "boundingBox": "block" + }, + { + "id": 819, + "name": "warped_trapdoor", + "displayName": "Warped Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8060, + "minStateId": 8060, + "maxStateId": 8075, + "drops": [741], + "boundingBox": "block" + }, + { + "id": 820, + "name": "crimson_fence_gate", + "displayName": "Crimson Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7948, + "minStateId": 7948, + "maxStateId": 7963, + "drops": [759], + "boundingBox": "block" + }, + { + "id": 821, + "name": "warped_fence_gate", + "displayName": "Warped Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9153, + "minStateId": 9153, + "maxStateId": 9168, + "drops": [760], + "boundingBox": "block" + }, + { + "id": 822, + "name": "crimson_stairs", + "displayName": "Crimson Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11403, + "minStateId": 11403, + "maxStateId": 11410, + "drops": [393], + "boundingBox": "block" + }, + { + "id": 823, + "name": "warped_stairs", + "displayName": "Warped Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6093, + "minStateId": 6093, + "maxStateId": 6100, + "drops": [394], + "boundingBox": "block" + }, + { + "id": 824, + "name": "crimson_button", + "displayName": "Crimson Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7268, + "minStateId": 7268, + "maxStateId": 7279, + "drops": [693], + "boundingBox": "empty" + }, + { + "id": 825, + "name": "warped_button", + "displayName": "Warped Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12930, + "minStateId": 12930, + "maxStateId": 12941, + "drops": [694], + "boundingBox": "empty" + }, + { + "id": 826, + "name": "crimson_door", + "displayName": "Crimson Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6604, + "minStateId": 6604, + "maxStateId": 6635, + "drops": [720], + "boundingBox": "block" + }, + { + "id": 827, + "name": "warped_door", + "displayName": "Warped Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 33, + "minStateId": 33, + "maxStateId": 64, + "drops": [721], + "boundingBox": "block" + }, + { + "id": 828, + "name": "crimson_standing_sign", + "displayName": "Crimson Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13016, + "minStateId": 13016, + "maxStateId": 13031, + "drops": [895], + "boundingBox": "empty" + }, + { + "id": 829, + "name": "warped_standing_sign", + "displayName": "Warped Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12860, + "minStateId": 12860, + "maxStateId": 12875, + "drops": [896], + "boundingBox": "empty" + }, + { + "id": 830, + "name": "crimson_wall_sign", + "displayName": "Crimson Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 548, + "minStateId": 548, + "maxStateId": 553, + "drops": [895], + "boundingBox": "empty" + }, + { + "id": 831, + "name": "warped_wall_sign", + "displayName": "Warped Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1149, + "minStateId": 1149, + "maxStateId": 1154, + "drops": [896], + "boundingBox": "empty" + }, + { + "id": 832, + "name": "structure_block", + "displayName": "Structure Block", + "hardness": -1, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11506, + "minStateId": 11506, + "maxStateId": 11511, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 833, + "name": "jigsaw", + "displayName": "Jigsaw Block", + "hardness": -1, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8620, + "minStateId": 8620, + "maxStateId": 8643, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 834, + "name": "composter", + "displayName": "Composter", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9169, + "minStateId": 9169, + "maxStateId": 9177, + "drops": [1201], + "boundingBox": "block" + }, + { + "id": 835, + "name": "target", + "displayName": "Target", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11521, + "minStateId": 11521, + "maxStateId": 11521, + "drops": [671], + "boundingBox": "block" + }, + { + "id": 836, + "name": "bee_nest", + "displayName": "Bee Nest", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9536, + "minStateId": 9536, + "maxStateId": 9559, + "drops": [], + "boundingBox": "block" + }, + { + "id": 837, + "name": "beehive", + "displayName": "Beehive", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11249, + "minStateId": 11249, + "maxStateId": 11272, + "drops": [1220], + "boundingBox": "block" + }, + { + "id": 838, + "name": "honey_block", + "displayName": "Honey Block", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 2356, + "minStateId": 2356, + "maxStateId": 2356, + "drops": [665], + "boundingBox": "block" + }, + { + "id": 839, + "name": "honeycomb_block", + "displayName": "Honeycomb Block", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7315, + "minStateId": 7315, + "maxStateId": 7315, + "drops": [1222], + "boundingBox": "block" + }, + { + "id": 840, + "name": "netherite_block", + "displayName": "Block of Netherite", + "hardness": 50, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6158, + "minStateId": 6158, + "maxStateId": 6158, + "harvestTools": {"839": true, "844": true}, + "drops": [92], + "boundingBox": "block" + }, + { + "id": 841, + "name": "ancient_debris", + "displayName": "Ancient Debris", + "hardness": 30, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11216, + "minStateId": 11216, + "maxStateId": 11216, + "harvestTools": {"839": true, "844": true}, + "drops": [80], + "boundingBox": "block" + }, + { + "id": 842, + "name": "crying_obsidian", + "displayName": "Crying Obsidian", + "hardness": 50, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 10, + "filterLight": 15, + "defaultState": 11921, + "minStateId": 11921, + "maxStateId": 11921, + "harvestTools": {"839": true, "844": true}, + "drops": [1224], + "boundingBox": "block" + }, + { + "id": 843, + "name": "respawn_anchor", + "displayName": "Respawn Anchor", + "hardness": 50, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1974, + "minStateId": 1974, + "maxStateId": 1978, + "harvestTools": {"839": true, "844": true}, + "drops": [1237], + "boundingBox": "block" + }, + { + "id": 848, + "name": "lodestone", + "displayName": "Lodestone", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14094, + "minStateId": 14094, + "maxStateId": 14094, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1223], + "boundingBox": "block" + }, + { + "id": 849, + "name": "blackstone", + "displayName": "Blackstone", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13302, + "minStateId": 13302, + "maxStateId": 13302, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1225], + "boundingBox": "block" + }, + { + "id": 850, + "name": "blackstone_stairs", + "displayName": "Blackstone Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12244, + "minStateId": 12244, + "maxStateId": 12251, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1227], + "boundingBox": "block" + }, + { + "id": 851, + "name": "blackstone_wall", + "displayName": "Blackstone Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6701, + "minStateId": 6701, + "maxStateId": 6862, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [412], + "boundingBox": "block" + }, + { + "id": 852, + "name": "blackstone_double_slab", + "displayName": "Blackstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 117, + "minStateId": 117, + "maxStateId": 118, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1226], + "boundingBox": "block" + }, + { + "id": 8030, + "name": "blackstone_slab", + "displayName": "Blackstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2390, + "minStateId": 2390, + "maxStateId": 2391, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1226], + "boundingBox": "block" + }, + { + "id": 853, + "name": "polished_blackstone", + "displayName": "Polished Blackstone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6054, + "minStateId": 6054, + "maxStateId": 6054, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1229], + "boundingBox": "block" + }, + { + "id": 854, + "name": "polished_blackstone_bricks", + "displayName": "Polished Blackstone Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7967, + "minStateId": 7967, + "maxStateId": 7967, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1233], + "boundingBox": "block" + }, + { + "id": 855, + "name": "cracked_polished_blackstone_bricks", + "displayName": "Cracked Polished Blackstone Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12876, + "minStateId": 12876, + "maxStateId": 12876, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1236], + "boundingBox": "block" + }, + { + "id": 856, + "name": "chiseled_polished_blackstone", + "displayName": "Chiseled Polished Blackstone", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8824, + "minStateId": 8824, + "maxStateId": 8824, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1232], + "boundingBox": "block" + }, + { + "id": 857, + "name": "polished_blackstone_brick_double_slab", + "displayName": "Polished Blackstone Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1970, + "minStateId": 1970, + "maxStateId": 1971, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1234], + "boundingBox": "block" + }, + { + "id": 8031, + "name": "polished_blackstone_brick_slab", + "displayName": "Polished Blackstone Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6982, + "minStateId": 6982, + "maxStateId": 6983, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1234], + "boundingBox": "block" + }, + { + "id": 858, + "name": "polished_blackstone_brick_stairs", + "displayName": "Polished Blackstone Brick Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7316, + "minStateId": 7316, + "maxStateId": 7323, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1235], + "boundingBox": "block" + }, + { + "id": 859, + "name": "polished_blackstone_brick_wall", + "displayName": "Polished Blackstone Brick Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2441, + "minStateId": 2441, + "maxStateId": 2602, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [414], + "boundingBox": "block" + }, + { + "id": 860, + "name": "gilded_blackstone", + "displayName": "Gilded Blackstone", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7451, + "minStateId": 7451, + "maxStateId": 7451, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1228], + "boundingBox": "block" + }, + { + "id": 861, + "name": "polished_blackstone_stairs", + "displayName": "Polished Blackstone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7119, + "minStateId": 7119, + "maxStateId": 7126, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1231], + "boundingBox": "block" + }, + { + "id": 862, + "name": "polished_blackstone_double_slab", + "displayName": "Polished Blackstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1788, + "minStateId": 1788, + "maxStateId": 1789, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1230], + "boundingBox": "block" + }, + { + "id": 8032, + "name": "polished_blackstone_slab", + "displayName": "Polished Blackstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11094, + "minStateId": 11094, + "maxStateId": 11095, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [1230], + "boundingBox": "block" + }, + { + "id": 863, + "name": "polished_blackstone_pressure_plate", + "displayName": "Polished Blackstone Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11355, + "minStateId": 11355, + "maxStateId": 11370, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [696], + "boundingBox": "empty" + }, + { + "id": 864, + "name": "polished_blackstone_button", + "displayName": "Polished Blackstone Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13552, + "minStateId": 13552, + "maxStateId": 13563, + "drops": [683], + "boundingBox": "empty" + }, + { + "id": 865, + "name": "polished_blackstone_wall", + "displayName": "Polished Blackstone Wall", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11930, + "minStateId": 11930, + "maxStateId": 12091, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [413], + "boundingBox": "block" + }, + { + "id": 866, + "name": "chiseled_nether_bricks", + "displayName": "Chiseled Nether Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12929, + "minStateId": 12929, + "maxStateId": 12929, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [368], + "boundingBox": "block" + }, + { + "id": 867, + "name": "cracked_nether_bricks", + "displayName": "Cracked Nether Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7396, + "minStateId": 7396, + "maxStateId": 7396, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [367], + "boundingBox": "block" + }, + { + "id": 868, + "name": "quartz_bricks", + "displayName": "Quartz Bricks", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11481, + "minStateId": 11481, + "maxStateId": 11481, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [424], + "boundingBox": "block" + }, + { + "id": 869, + "name": "candle", + "displayName": "Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13105, + "minStateId": 13105, + "maxStateId": 13112, + "drops": [1238], + "boundingBox": "block" + }, + { + "id": 870, + "name": "white_candle", + "displayName": "White Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9059, + "minStateId": 9059, + "maxStateId": 9066, + "drops": [1239], + "boundingBox": "block" + }, + { + "id": 871, + "name": "orange_candle", + "displayName": "Orange Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1124, + "minStateId": 1124, + "maxStateId": 1131, + "drops": [1240], + "boundingBox": "block" + }, + { + "id": 872, + "name": "magenta_candle", + "displayName": "Magenta Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1186, + "minStateId": 1186, + "maxStateId": 1193, + "drops": [1241], + "boundingBox": "block" + }, + { + "id": 873, + "name": "light_blue_candle", + "displayName": "Light Blue Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7413, + "minStateId": 7413, + "maxStateId": 7420, + "drops": [1242], + "boundingBox": "block" + }, + { + "id": 874, + "name": "yellow_candle", + "displayName": "Yellow Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11318, + "minStateId": 11318, + "maxStateId": 11325, + "drops": [1243], + "boundingBox": "block" + }, + { + "id": 875, + "name": "lime_candle", + "displayName": "Lime Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11498, + "minStateId": 11498, + "maxStateId": 11505, + "drops": [1244], + "boundingBox": "block" + }, + { + "id": 876, + "name": "pink_candle", + "displayName": "Pink Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13071, + "minStateId": 13071, + "maxStateId": 13078, + "drops": [1245], + "boundingBox": "block" + }, + { + "id": 877, + "name": "gray_candle", + "displayName": "Gray Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2417, + "minStateId": 2417, + "maxStateId": 2424, + "drops": [1246], + "boundingBox": "block" + }, + { + "id": 878, + "name": "light_gray_candle", + "displayName": "Light Gray Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11347, + "minStateId": 11347, + "maxStateId": 11354, + "drops": [1247], + "boundingBox": "block" + }, + { + "id": 879, + "name": "cyan_candle", + "displayName": "Cyan Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13449, + "minStateId": 13449, + "maxStateId": 13456, + "drops": [1248], + "boundingBox": "block" + }, + { + "id": 880, + "name": "purple_candle", + "displayName": "Purple Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12266, + "minStateId": 12266, + "maxStateId": 12273, + "drops": [1249], + "boundingBox": "block" + }, + { + "id": 881, + "name": "blue_candle", + "displayName": "Blue Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2, + "minStateId": 2, + "maxStateId": 9, + "drops": [1250], + "boundingBox": "block" + }, + { + "id": 882, + "name": "brown_candle", + "displayName": "Brown Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10484, + "minStateId": 10484, + "maxStateId": 10491, + "drops": [1251], + "boundingBox": "block" + }, + { + "id": 883, + "name": "green_candle", + "displayName": "Green Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1980, + "minStateId": 1980, + "maxStateId": 1987, + "drops": [1252], + "boundingBox": "block" + }, + { + "id": 884, + "name": "red_candle", + "displayName": "Red Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7968, + "minStateId": 7968, + "maxStateId": 7975, + "drops": [1253], + "boundingBox": "block" + }, + { + "id": 885, + "name": "black_candle", + "displayName": "Black Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 583, + "minStateId": 583, + "maxStateId": 590, + "drops": [1254], + "boundingBox": "block" + }, + { + "id": 886, + "name": "candle_cake", + "displayName": "Cake with Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13292, + "minStateId": 13292, + "maxStateId": 13293, + "drops": [1238], + "boundingBox": "block" + }, + { + "id": 887, + "name": "white_candle_cake", + "displayName": "Cake with White Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13290, + "minStateId": 13290, + "maxStateId": 13291, + "drops": [1239], + "boundingBox": "block" + }, + { + "id": 888, + "name": "orange_candle_cake", + "displayName": "Cake with Orange Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14062, + "minStateId": 14062, + "maxStateId": 14063, + "drops": [1240], + "boundingBox": "block" + }, + { + "id": 889, + "name": "magenta_candle_cake", + "displayName": "Cake with Magenta Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11196, + "minStateId": 11196, + "maxStateId": 11197, + "drops": [1241], + "boundingBox": "block" + }, + { + "id": 890, + "name": "light_blue_candle_cake", + "displayName": "Cake with Light Blue Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 745, + "minStateId": 745, + "maxStateId": 746, + "drops": [1242], + "boundingBox": "block" + }, + { + "id": 891, + "name": "yellow_candle_cake", + "displayName": "Cake with Yellow Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7492, + "minStateId": 7492, + "maxStateId": 7493, + "drops": [1243], + "boundingBox": "block" + }, + { + "id": 892, + "name": "lime_candle_cake", + "displayName": "Cake with Lime Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13879, + "minStateId": 13879, + "maxStateId": 13880, + "drops": [1244], + "boundingBox": "block" + }, + { + "id": 893, + "name": "pink_candle_cake", + "displayName": "Cake with Pink Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6939, + "minStateId": 6939, + "maxStateId": 6940, + "drops": [1245], + "boundingBox": "block" + }, + { + "id": 894, + "name": "gray_candle_cake", + "displayName": "Cake with Gray Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 143, + "minStateId": 143, + "maxStateId": 144, + "drops": [1246], + "boundingBox": "block" + }, + { + "id": 895, + "name": "light_gray_candle_cake", + "displayName": "Cake with Light Gray Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9057, + "minStateId": 9057, + "maxStateId": 9058, + "drops": [1247], + "boundingBox": "block" + }, + { + "id": 896, + "name": "cyan_candle_cake", + "displayName": "Cake with Cyan Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2016, + "minStateId": 2016, + "maxStateId": 2017, + "drops": [1248], + "boundingBox": "block" + }, + { + "id": 897, + "name": "purple_candle_cake", + "displayName": "Cake with Purple Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11906, + "minStateId": 11906, + "maxStateId": 11907, + "drops": [1249], + "boundingBox": "block" + }, + { + "id": 898, + "name": "blue_candle_cake", + "displayName": "Cake with Blue Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11084, + "minStateId": 11084, + "maxStateId": 11085, + "drops": [1250], + "boundingBox": "block" + }, + { + "id": 899, + "name": "brown_candle_cake", + "displayName": "Cake with Brown Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6029, + "minStateId": 6029, + "maxStateId": 6030, + "drops": [1251], + "boundingBox": "block" + }, + { + "id": 900, + "name": "green_candle_cake", + "displayName": "Cake with Green Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5969, + "minStateId": 5969, + "maxStateId": 5970, + "drops": [1252], + "boundingBox": "block" + }, + { + "id": 901, + "name": "red_candle_cake", + "displayName": "Cake with Red Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13425, + "minStateId": 13425, + "maxStateId": 13426, + "drops": [1253], + "boundingBox": "block" + }, + { + "id": 902, + "name": "black_candle_cake", + "displayName": "Cake with Black Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7448, + "minStateId": 7448, + "maxStateId": 7449, + "drops": [1254], + "boundingBox": "block" + }, + { + "id": 903, + "name": "amethyst_block", + "displayName": "Block of Amethyst", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 783, + "minStateId": 783, + "maxStateId": 783, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [86], + "boundingBox": "block" + }, + { + "id": 904, + "name": "budding_amethyst", + "displayName": "Budding Amethyst", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12221, + "minStateId": 12221, + "maxStateId": 12221, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 905, + "name": "amethyst_cluster", + "displayName": "Amethyst Cluster", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 5, + "filterLight": 0, + "defaultState": 13618, + "minStateId": 13618, + "maxStateId": 13623, + "drops": [808], + "boundingBox": "block" + }, + { + "id": 906, + "name": "large_amethyst_bud", + "displayName": "Large Amethyst Bud", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 4, + "filterLight": 0, + "defaultState": 8014, + "minStateId": 8014, + "maxStateId": 8019, + "drops": [], + "boundingBox": "block" + }, + { + "id": 907, + "name": "medium_amethyst_bud", + "displayName": "Medium Amethyst Bud", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 2, + "filterLight": 0, + "defaultState": 7197, + "minStateId": 7197, + "maxStateId": 7202, + "drops": [], + "boundingBox": "block" + }, + { + "id": 908, + "name": "small_amethyst_bud", + "displayName": "Small Amethyst Bud", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 1054, + "minStateId": 1054, + "maxStateId": 1059, + "drops": [], + "boundingBox": "block" + }, + { + "id": 909, + "name": "tuff", + "displayName": "Tuff", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1103, + "minStateId": 1103, + "maxStateId": 1103, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [12], + "boundingBox": "block" + }, + { + "id": 910, + "name": "tuff_slab", + "displayName": "Tuff Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 706, + "minStateId": 706, + "maxStateId": 707, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 8033, + "name": "tuff_double_slab", + "displayName": "Tuff Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13480, + "minStateId": 13480, + "maxStateId": 13481, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 911, + "name": "tuff_stairs", + "displayName": "Tuff Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10527, + "minStateId": 10527, + "maxStateId": 10534, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 912, + "name": "tuff_wall", + "displayName": "Tuff Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5322, + "minStateId": 5322, + "maxStateId": 5483, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 913, + "name": "polished_tuff", + "displayName": "Polished Tuff", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12909, + "minStateId": 12909, + "maxStateId": 12909, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 914, + "name": "polished_tuff_slab", + "displayName": "Polished Tuff Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 145, + "minStateId": 145, + "maxStateId": 146, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 8034, + "name": "polished_tuff_double_slab", + "displayName": "Polished Tuff Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6602, + "minStateId": 6602, + "maxStateId": 6603, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 915, + "name": "polished_tuff_stairs", + "displayName": "Polished Tuff Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12961, + "minStateId": 12961, + "maxStateId": 12968, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 916, + "name": "polished_tuff_wall", + "displayName": "Polished Tuff Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2018, + "minStateId": 2018, + "maxStateId": 2179, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 917, + "name": "chiseled_tuff", + "displayName": "Chiseled Tuff", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13808, + "minStateId": 13808, + "maxStateId": 13808, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 918, + "name": "tuff_bricks", + "displayName": "Tuff Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11869, + "minStateId": 11869, + "maxStateId": 11869, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 919, + "name": "tuff_brick_slab", + "displayName": "Tuff Brick Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6104, + "minStateId": 6104, + "maxStateId": 6105, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 8035, + "name": "tuff_brick_double_slab", + "displayName": "Tuff Brick Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10510, + "minStateId": 10510, + "maxStateId": 10511, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 920, + "name": "tuff_brick_stairs", + "displayName": "Tuff Brick Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11387, + "minStateId": 11387, + "maxStateId": 11394, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 921, + "name": "tuff_brick_wall", + "displayName": "Tuff Brick Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1803, + "minStateId": 1803, + "maxStateId": 1964, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 922, + "name": "chiseled_tuff_bricks", + "displayName": "Chiseled Tuff Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13141, + "minStateId": 13141, + "maxStateId": 13141, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 923, + "name": "calcite", + "displayName": "Calcite", + "hardness": 0.75, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 628, + "minStateId": 628, + "maxStateId": 628, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [11], + "boundingBox": "block" + }, + { + "id": 924, + "name": "tinted_glass", + "displayName": "Tinted Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10666, + "minStateId": 10666, + "maxStateId": 10666, + "drops": [189], + "boundingBox": "block" + }, + { + "id": 925, + "name": "powder_snow", + "displayName": "Powder Snow", + "hardness": 0.25, + "resistance": 0.25, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 1, + "defaultState": 94, + "minStateId": 94, + "maxStateId": 94, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 926, + "name": "sculk_sensor", + "displayName": "Sculk Sensor", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 1, + "filterLight": 0, + "defaultState": 7212, + "minStateId": 7212, + "maxStateId": 7214, + "drops": [], + "boundingBox": "block" + }, + { + "id": 927, + "name": "calibrated_sculk_sensor", + "displayName": "Calibrated Sculk Sensor", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 1, + "filterLight": 0, + "defaultState": 10024, + "minStateId": 10024, + "maxStateId": 10035, + "drops": [], + "boundingBox": "block" + }, + { + "id": 928, + "name": "sculk", + "displayName": "Sculk", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12263, + "minStateId": 12263, + "maxStateId": 12263, + "drops": [], + "boundingBox": "block" + }, + { + "id": 929, + "name": "sculk_vein", + "displayName": "Sculk Vein", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 12793, + "minStateId": 12793, + "maxStateId": 12856, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 930, + "name": "sculk_catalyst", + "displayName": "Sculk Catalyst", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 6, + "filterLight": 15, + "defaultState": 5990, + "minStateId": 5990, + "maxStateId": 5991, + "drops": [], + "boundingBox": "block" + }, + { + "id": 931, + "name": "sculk_shrieker", + "displayName": "Sculk Shrieker", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 1, + "defaultState": 641, + "minStateId": 641, + "maxStateId": 644, + "drops": [], + "boundingBox": "block" + }, + { + "id": 932, + "name": "copper_block", + "displayName": "Block of Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7938, + "minStateId": 7938, + "maxStateId": 7938, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [89], + "boundingBox": "block" + }, + { + "id": 933, + "name": "exposed_copper", + "displayName": "Exposed Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1366, + "minStateId": 1366, + "maxStateId": 1366, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [93], + "boundingBox": "block" + }, + { + "id": 934, + "name": "weathered_copper", + "displayName": "Weathered Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14064, + "minStateId": 14064, + "maxStateId": 14064, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [94], + "boundingBox": "block" + }, + { + "id": 935, + "name": "oxidized_copper", + "displayName": "Oxidized Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5926, + "minStateId": 5926, + "maxStateId": 5926, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [95], + "boundingBox": "block" + }, + { + "id": 936, + "name": "copper_ore", + "displayName": "Copper Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5927, + "minStateId": 5927, + "maxStateId": 5927, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [811], + "boundingBox": "block" + }, + { + "id": 937, + "name": "deepslate_copper_ore", + "displayName": "Deepslate Copper Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 107, + "minStateId": 107, + "maxStateId": 107, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [811], + "boundingBox": "block" + }, + { + "id": 938, + "name": "oxidized_cut_copper", + "displayName": "Oxidized Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9254, + "minStateId": 9254, + "maxStateId": 9254, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [103], + "boundingBox": "block" + }, + { + "id": 939, + "name": "weathered_cut_copper", + "displayName": "Weathered Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12859, + "minStateId": 12859, + "maxStateId": 12859, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [102], + "boundingBox": "block" + }, + { + "id": 940, + "name": "exposed_cut_copper", + "displayName": "Exposed Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11308, + "minStateId": 11308, + "maxStateId": 11308, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [101], + "boundingBox": "block" + }, + { + "id": 941, + "name": "cut_copper", + "displayName": "Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7976, + "minStateId": 7976, + "maxStateId": 7976, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [100], + "boundingBox": "block" + }, + { + "id": 942, + "name": "oxidized_chiseled_copper", + "displayName": "Oxidized Chiseled Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9032, + "minStateId": 9032, + "maxStateId": 9032, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 943, + "name": "weathered_chiseled_copper", + "displayName": "Weathered Chiseled Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1053, + "minStateId": 1053, + "maxStateId": 1053, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 944, + "name": "exposed_chiseled_copper", + "displayName": "Exposed Chiseled Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11783, + "minStateId": 11783, + "maxStateId": 11783, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 945, + "name": "chiseled_copper", + "displayName": "Chiseled Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9494, + "minStateId": 9494, + "maxStateId": 9494, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 946, + "name": "waxed_oxidized_chiseled_copper", + "displayName": "Waxed Oxidized Chiseled Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 75, + "minStateId": 75, + "maxStateId": 75, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 947, + "name": "waxed_weathered_chiseled_copper", + "displayName": "Waxed Weathered Chiseled Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6088, + "minStateId": 6088, + "maxStateId": 6088, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 948, + "name": "waxed_exposed_chiseled_copper", + "displayName": "Waxed Exposed Chiseled Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 705, + "minStateId": 705, + "maxStateId": 705, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 949, + "name": "waxed_chiseled_copper", + "displayName": "Waxed Chiseled Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13624, + "minStateId": 13624, + "maxStateId": 13624, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 950, + "name": "oxidized_cut_copper_stairs", + "displayName": "Oxidized Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1107, + "minStateId": 1107, + "maxStateId": 1114, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [107], + "boundingBox": "block" + }, + { + "id": 951, + "name": "weathered_cut_copper_stairs", + "displayName": "Weathered Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7127, + "minStateId": 7127, + "maxStateId": 7134, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [106], + "boundingBox": "block" + }, + { + "id": 952, + "name": "exposed_cut_copper_stairs", + "displayName": "Exposed Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7454, + "minStateId": 7454, + "maxStateId": 7461, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [105], + "boundingBox": "block" + }, + { + "id": 953, + "name": "cut_copper_stairs", + "displayName": "Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7471, + "minStateId": 7471, + "maxStateId": 7478, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [104], + "boundingBox": "block" + }, + { + "id": 954, + "name": "oxidized_double_cut_copper_slab", + "displayName": "Oxidized Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1364, + "minStateId": 1364, + "maxStateId": 1365, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [111], + "boundingBox": "block" + }, + { + "id": 8036, + "name": "oxidized_cut_copper_slab", + "displayName": "Oxidized Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9040, + "minStateId": 9040, + "maxStateId": 9041, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [111], + "boundingBox": "block" + }, + { + "id": 955, + "name": "weathered_cut_copper_slab", + "displayName": "Weathered Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11143, + "minStateId": 11143, + "maxStateId": 11144, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [110], + "boundingBox": "block" + }, + { + "id": 8037, + "name": "weathered_double_cut_copper_slab", + "displayName": "Weathered Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13048, + "minStateId": 13048, + "maxStateId": 13049, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [110], + "boundingBox": "block" + }, + { + "id": 956, + "name": "exposed_double_cut_copper_slab", + "displayName": "Exposed Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1387, + "minStateId": 1387, + "maxStateId": 1388, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [109], + "boundingBox": "block" + }, + { + "id": 8038, + "name": "exposed_cut_copper_slab", + "displayName": "Exposed Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11800, + "minStateId": 11800, + "maxStateId": 11801, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [109], + "boundingBox": "block" + }, + { + "id": 957, + "name": "double_cut_copper_slab", + "displayName": "Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6022, + "minStateId": 6022, + "maxStateId": 6023, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [108], + "boundingBox": "block" + }, + { + "id": 8039, + "name": "cut_copper_slab", + "displayName": "Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8997, + "minStateId": 8997, + "maxStateId": 8998, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [108], + "boundingBox": "block" + }, + { + "id": 958, + "name": "waxed_copper", + "displayName": "Waxed Block of Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13457, + "minStateId": 13457, + "maxStateId": 13457, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [112], + "boundingBox": "block" + }, + { + "id": 959, + "name": "waxed_weathered_copper", + "displayName": "Waxed Weathered Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2007, + "minStateId": 2007, + "maxStateId": 2007, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [114], + "boundingBox": "block" + }, + { + "id": 960, + "name": "waxed_exposed_copper", + "displayName": "Waxed Exposed Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1988, + "minStateId": 1988, + "maxStateId": 1988, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [113], + "boundingBox": "block" + }, + { + "id": 961, + "name": "waxed_oxidized_copper", + "displayName": "Waxed Oxidized Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13255, + "minStateId": 13255, + "maxStateId": 13255, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [115], + "boundingBox": "block" + }, + { + "id": 962, + "name": "waxed_oxidized_cut_copper", + "displayName": "Waxed Oxidized Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 627, + "minStateId": 627, + "maxStateId": 627, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [123], + "boundingBox": "block" + }, + { + "id": 963, + "name": "waxed_weathered_cut_copper", + "displayName": "Waxed Weathered Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8588, + "minStateId": 8588, + "maxStateId": 8588, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [122], + "boundingBox": "block" + }, + { + "id": 964, + "name": "waxed_exposed_cut_copper", + "displayName": "Waxed Exposed Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6193, + "minStateId": 6193, + "maxStateId": 6193, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [121], + "boundingBox": "block" + }, + { + "id": 965, + "name": "waxed_cut_copper", + "displayName": "Waxed Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12993, + "minStateId": 12993, + "maxStateId": 12993, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [120], + "boundingBox": "block" + }, + { + "id": 966, + "name": "waxed_oxidized_cut_copper_stairs", + "displayName": "Waxed Oxidized Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10012, + "minStateId": 10012, + "maxStateId": 10019, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [127], + "boundingBox": "block" + }, + { + "id": 967, + "name": "waxed_weathered_cut_copper_stairs", + "displayName": "Waxed Weathered Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11309, + "minStateId": 11309, + "maxStateId": 11316, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [126], + "boundingBox": "block" + }, + { + "id": 968, + "name": "waxed_exposed_cut_copper_stairs", + "displayName": "Waxed Exposed Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6672, + "minStateId": 6672, + "maxStateId": 6679, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [125], + "boundingBox": "block" + }, + { + "id": 969, + "name": "waxed_cut_copper_stairs", + "displayName": "Waxed Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1160, + "minStateId": 1160, + "maxStateId": 1167, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [124], + "boundingBox": "block" + }, + { + "id": 970, + "name": "waxed_oxidized_cut_copper_slab", + "displayName": "Waxed Oxidized Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2008, + "minStateId": 2008, + "maxStateId": 2009, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [131], + "boundingBox": "block" + }, + { + "id": 8040, + "name": "waxed_oxidized_double_cut_copper_slab", + "displayName": "Waxed Oxidized Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13475, + "minStateId": 13475, + "maxStateId": 13476, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [131], + "boundingBox": "block" + }, + { + "id": 971, + "name": "waxed_weathered_double_cut_copper_slab", + "displayName": "Waxed Weathered Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7965, + "minStateId": 7965, + "maxStateId": 7966, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [130], + "boundingBox": "block" + }, + { + "id": 8041, + "name": "waxed_weathered_cut_copper_slab", + "displayName": "Waxed Weathered Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11742, + "minStateId": 11742, + "maxStateId": 11743, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [130], + "boundingBox": "block" + }, + { + "id": 972, + "name": "waxed_exposed_cut_copper_slab", + "displayName": "Waxed Exposed Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 680, + "minStateId": 680, + "maxStateId": 681, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [129], + "boundingBox": "block" + }, + { + "id": 8042, + "name": "waxed_exposed_double_cut_copper_slab", + "displayName": "Waxed Exposed Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12092, + "minStateId": 12092, + "maxStateId": 12093, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [129], + "boundingBox": "block" + }, + { + "id": 973, + "name": "waxed_double_cut_copper_slab", + "displayName": "Waxed Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9178, + "minStateId": 9178, + "maxStateId": 9179, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [128], + "boundingBox": "block" + }, + { + "id": 8043, + "name": "waxed_cut_copper_slab", + "displayName": "Waxed Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13625, + "minStateId": 13625, + "maxStateId": 13626, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [128], + "boundingBox": "block" + }, + { + "id": 974, + "name": "copper_door", + "displayName": "Copper Door", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10630, + "minStateId": 10630, + "maxStateId": 10661, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 975, + "name": "exposed_copper_door", + "displayName": "Exposed Copper Door", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8020, + "minStateId": 8020, + "maxStateId": 8051, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 976, + "name": "oxidized_copper_door", + "displayName": "Oxidized Copper Door", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14128, + "minStateId": 14128, + "maxStateId": 14159, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 977, + "name": "weathered_copper_door", + "displayName": "Weathered Copper Door", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11567, + "minStateId": 11567, + "maxStateId": 11598, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 978, + "name": "waxed_copper_door", + "displayName": "Waxed Copper Door", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13491, + "minStateId": 13491, + "maxStateId": 13522, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 979, + "name": "waxed_exposed_copper_door", + "displayName": "Waxed Exposed Copper Door", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9206, + "minStateId": 9206, + "maxStateId": 9237, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 980, + "name": "waxed_oxidized_copper_door", + "displayName": "Waxed Oxidized Copper Door", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10538, + "minStateId": 10538, + "maxStateId": 10569, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 981, + "name": "waxed_weathered_copper_door", + "displayName": "Waxed Weathered Copper Door", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12307, + "minStateId": 12307, + "maxStateId": 12338, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 982, + "name": "copper_trapdoor", + "displayName": "Copper Trapdoor", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10036, + "minStateId": 10036, + "maxStateId": 10051, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 983, + "name": "exposed_copper_trapdoor", + "displayName": "Exposed Copper Trapdoor", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11198, + "minStateId": 11198, + "maxStateId": 11213, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 984, + "name": "oxidized_copper_trapdoor", + "displayName": "Oxidized Copper Trapdoor", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7430, + "minStateId": 7430, + "maxStateId": 7445, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 985, + "name": "weathered_copper_trapdoor", + "displayName": "Weathered Copper Trapdoor", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11717, + "minStateId": 11717, + "maxStateId": 11732, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 986, + "name": "waxed_copper_trapdoor", + "displayName": "Waxed Copper Trapdoor", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5910, + "minStateId": 5910, + "maxStateId": 5925, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 987, + "name": "waxed_exposed_copper_trapdoor", + "displayName": "Waxed Exposed Copper Trapdoor", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10468, + "minStateId": 10468, + "maxStateId": 10483, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 988, + "name": "waxed_oxidized_copper_trapdoor", + "displayName": "Waxed Oxidized Copper Trapdoor", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8594, + "minStateId": 8594, + "maxStateId": 8609, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 989, + "name": "waxed_weathered_copper_trapdoor", + "displayName": "Waxed Weathered Copper Trapdoor", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8094, + "minStateId": 8094, + "maxStateId": 8109, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 990, + "name": "copper_grate", + "displayName": "Copper Grate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1122, + "minStateId": 1122, + "maxStateId": 1122, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 991, + "name": "exposed_copper_grate", + "displayName": "Exposed Copper Grate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9131, + "minStateId": 9131, + "maxStateId": 9131, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 992, + "name": "weathered_copper_grate", + "displayName": "Weathered Copper Grate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6102, + "minStateId": 6102, + "maxStateId": 6102, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 993, + "name": "oxidized_copper_grate", + "displayName": "Oxidized Copper Grate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11836, + "minStateId": 11836, + "maxStateId": 11836, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 994, + "name": "waxed_copper_grate", + "displayName": "Waxed Copper Grate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9132, + "minStateId": 9132, + "maxStateId": 9132, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 995, + "name": "waxed_exposed_copper_grate", + "displayName": "Waxed Exposed Copper Grate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1363, + "minStateId": 1363, + "maxStateId": 1363, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 996, + "name": "waxed_weathered_copper_grate", + "displayName": "Waxed Weathered Copper Grate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7144, + "minStateId": 7144, + "maxStateId": 7144, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 997, + "name": "waxed_oxidized_copper_grate", + "displayName": "Waxed Oxidized Copper Grate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13881, + "minStateId": 13881, + "maxStateId": 13881, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 998, + "name": "copper_bulb", + "displayName": "Copper Bulb", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7215, + "minStateId": 7215, + "maxStateId": 7218, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 999, + "name": "exposed_copper_bulb", + "displayName": "Exposed Copper Bulb", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11396, + "minStateId": 11396, + "maxStateId": 11399, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 1045, + "name": "raw_iron_block", + "displayName": "Block of Raw Iron", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14097, + "minStateId": 14097, + "maxStateId": 14097, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [82], + "boundingBox": "block" + }, + { + "name": "hard_blue_stained_glass_pane", + "id": 14096, + "minStateId": 14096, + "maxStateId": 14096, + "displayName": "Hard Blue Stained Glass Pane", + "defaultState": 14096, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1027, + "name": "cobbled_deepslate_wall", + "displayName": "Cobbled Deepslate Wall", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13899, + "minStateId": 13899, + "maxStateId": 14060, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [415], + "boundingBox": "block" + }, + { + "id": 1057, + "name": "trial_spawner", + "displayName": "Trial Spawner", + "hardness": 50, + "resistance": 50, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13885, + "minStateId": 13885, + "maxStateId": 13896, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "name": "hard_light_gray_stained_glass", + "id": 13806, + "minStateId": 13806, + "maxStateId": 13806, + "displayName": "Hard Light Gray Stained Glass", + "defaultState": 13806, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "info_update2", + "id": 13617, + "minStateId": 13617, + "maxStateId": 13617, + "displayName": "Info Update2", + "defaultState": 13617, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1028, + "name": "polished_deepslate", + "displayName": "Polished Deepslate", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13479, + "minStateId": 13479, + "maxStateId": 13479, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [10], + "boundingBox": "block" + }, + { + "id": 1031, + "name": "polished_deepslate_wall", + "displayName": "Polished Deepslate Wall", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13627, + "minStateId": 13627, + "maxStateId": 13788, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [416], + "boundingBox": "block" + }, + { + "id": 1056, + "name": "crafter", + "displayName": "Crafter", + "hardness": 1.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13564, + "minStateId": 13564, + "maxStateId": 13611, + "drops": [], + "boundingBox": "block" + }, + { + "name": "element_84", + "id": 13409, + "minStateId": 13409, + "maxStateId": 13409, + "displayName": "Element 84", + "defaultState": 13409, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_85", + "id": 13408, + "minStateId": 13408, + "maxStateId": 13408, + "displayName": "Element 85", + "defaultState": 13408, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_86", + "id": 13407, + "minStateId": 13407, + "maxStateId": 13407, + "displayName": "Element 86", + "defaultState": 13407, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_87", + "id": 13406, + "minStateId": 13406, + "maxStateId": 13406, + "displayName": "Element 87", + "defaultState": 13406, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_80", + "id": 13405, + "minStateId": 13405, + "maxStateId": 13405, + "displayName": "Element 80", + "defaultState": 13405, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_81", + "id": 13404, + "minStateId": 13404, + "maxStateId": 13404, + "displayName": "Element 81", + "defaultState": 13404, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_82", + "id": 13403, + "minStateId": 13403, + "maxStateId": 13403, + "displayName": "Element 82", + "defaultState": 13403, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_83", + "id": 13402, + "minStateId": 13402, + "maxStateId": 13402, + "displayName": "Element 83", + "defaultState": 13402, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_88", + "id": 13401, + "minStateId": 13401, + "maxStateId": 13401, + "displayName": "Element 88", + "defaultState": 13401, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_89", + "id": 13400, + "minStateId": 13400, + "maxStateId": 13400, + "displayName": "Element 89", + "defaultState": 13400, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_97", + "id": 13399, + "minStateId": 13399, + "maxStateId": 13399, + "displayName": "Element 97", + "defaultState": 13399, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_96", + "id": 13398, + "minStateId": 13398, + "maxStateId": 13398, + "displayName": "Element 96", + "defaultState": 13398, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_95", + "id": 13397, + "minStateId": 13397, + "maxStateId": 13397, + "displayName": "Element 95", + "defaultState": 13397, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_94", + "id": 13396, + "minStateId": 13396, + "maxStateId": 13396, + "displayName": "Element 94", + "defaultState": 13396, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_93", + "id": 13395, + "minStateId": 13395, + "maxStateId": 13395, + "displayName": "Element 93", + "defaultState": 13395, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_92", + "id": 13394, + "minStateId": 13394, + "maxStateId": 13394, + "displayName": "Element 92", + "defaultState": 13394, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_91", + "id": 13393, + "minStateId": 13393, + "maxStateId": 13393, + "displayName": "Element 91", + "defaultState": 13393, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_90", + "id": 13392, + "minStateId": 13392, + "maxStateId": 13392, + "displayName": "Element 90", + "defaultState": 13392, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_99", + "id": 13391, + "minStateId": 13391, + "maxStateId": 13391, + "displayName": "Element 99", + "defaultState": 13391, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_98", + "id": 13390, + "minStateId": 13390, + "maxStateId": 13390, + "displayName": "Element 98", + "defaultState": 13390, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_68", + "id": 13389, + "minStateId": 13389, + "maxStateId": 13389, + "displayName": "Element 68", + "defaultState": 13389, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_69", + "id": 13388, + "minStateId": 13388, + "maxStateId": 13388, + "displayName": "Element 69", + "defaultState": 13388, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_62", + "id": 13387, + "minStateId": 13387, + "maxStateId": 13387, + "displayName": "Element 62", + "defaultState": 13387, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_63", + "id": 13386, + "minStateId": 13386, + "maxStateId": 13386, + "displayName": "Element 63", + "defaultState": 13386, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_60", + "id": 13385, + "minStateId": 13385, + "maxStateId": 13385, + "displayName": "Element 60", + "defaultState": 13385, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_61", + "id": 13384, + "minStateId": 13384, + "maxStateId": 13384, + "displayName": "Element 61", + "defaultState": 13384, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_66", + "id": 13383, + "minStateId": 13383, + "maxStateId": 13383, + "displayName": "Element 66", + "defaultState": 13383, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_67", + "id": 13382, + "minStateId": 13382, + "maxStateId": 13382, + "displayName": "Element 67", + "defaultState": 13382, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_64", + "id": 13381, + "minStateId": 13381, + "maxStateId": 13381, + "displayName": "Element 64", + "defaultState": 13381, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_65", + "id": 13380, + "minStateId": 13380, + "maxStateId": 13380, + "displayName": "Element 65", + "defaultState": 13380, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_79", + "id": 13379, + "minStateId": 13379, + "maxStateId": 13379, + "displayName": "Element 79", + "defaultState": 13379, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_78", + "id": 13378, + "minStateId": 13378, + "maxStateId": 13378, + "displayName": "Element 78", + "defaultState": 13378, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_75", + "id": 13377, + "minStateId": 13377, + "maxStateId": 13377, + "displayName": "Element 75", + "defaultState": 13377, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_74", + "id": 13376, + "minStateId": 13376, + "maxStateId": 13376, + "displayName": "Element 74", + "defaultState": 13376, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_77", + "id": 13375, + "minStateId": 13375, + "maxStateId": 13375, + "displayName": "Element 77", + "defaultState": 13375, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_76", + "id": 13374, + "minStateId": 13374, + "maxStateId": 13374, + "displayName": "Element 76", + "defaultState": 13374, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_71", + "id": 13373, + "minStateId": 13373, + "maxStateId": 13373, + "displayName": "Element 71", + "defaultState": 13373, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_70", + "id": 13372, + "minStateId": 13372, + "maxStateId": 13372, + "displayName": "Element 70", + "defaultState": 13372, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_73", + "id": 13371, + "minStateId": 13371, + "maxStateId": 13371, + "displayName": "Element 73", + "defaultState": 13371, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_72", + "id": 13370, + "minStateId": 13370, + "maxStateId": 13370, + "displayName": "Element 72", + "defaultState": 13370, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_40", + "id": 13369, + "minStateId": 13369, + "maxStateId": 13369, + "displayName": "Element 40", + "defaultState": 13369, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_41", + "id": 13368, + "minStateId": 13368, + "maxStateId": 13368, + "displayName": "Element 41", + "defaultState": 13368, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_42", + "id": 13367, + "minStateId": 13367, + "maxStateId": 13367, + "displayName": "Element 42", + "defaultState": 13367, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_43", + "id": 13366, + "minStateId": 13366, + "maxStateId": 13366, + "displayName": "Element 43", + "defaultState": 13366, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_44", + "id": 13365, + "minStateId": 13365, + "maxStateId": 13365, + "displayName": "Element 44", + "defaultState": 13365, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_45", + "id": 13364, + "minStateId": 13364, + "maxStateId": 13364, + "displayName": "Element 45", + "defaultState": 13364, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_46", + "id": 13363, + "minStateId": 13363, + "maxStateId": 13363, + "displayName": "Element 46", + "defaultState": 13363, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_47", + "id": 13362, + "minStateId": 13362, + "maxStateId": 13362, + "displayName": "Element 47", + "defaultState": 13362, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_48", + "id": 13361, + "minStateId": 13361, + "maxStateId": 13361, + "displayName": "Element 48", + "defaultState": 13361, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_49", + "id": 13360, + "minStateId": 13360, + "maxStateId": 13360, + "displayName": "Element 49", + "defaultState": 13360, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_53", + "id": 13359, + "minStateId": 13359, + "maxStateId": 13359, + "displayName": "Element 53", + "defaultState": 13359, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_52", + "id": 13358, + "minStateId": 13358, + "maxStateId": 13358, + "displayName": "Element 52", + "defaultState": 13358, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_51", + "id": 13357, + "minStateId": 13357, + "maxStateId": 13357, + "displayName": "Element 51", + "defaultState": 13357, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_50", + "id": 13356, + "minStateId": 13356, + "maxStateId": 13356, + "displayName": "Element 50", + "defaultState": 13356, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_57", + "id": 13355, + "minStateId": 13355, + "maxStateId": 13355, + "displayName": "Element 57", + "defaultState": 13355, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_56", + "id": 13354, + "minStateId": 13354, + "maxStateId": 13354, + "displayName": "Element 56", + "defaultState": 13354, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_55", + "id": 13353, + "minStateId": 13353, + "maxStateId": 13353, + "displayName": "Element 55", + "defaultState": 13353, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_54", + "id": 13352, + "minStateId": 13352, + "maxStateId": 13352, + "displayName": "Element 54", + "defaultState": 13352, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_59", + "id": 13351, + "minStateId": 13351, + "maxStateId": 13351, + "displayName": "Element 59", + "defaultState": 13351, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_58", + "id": 13350, + "minStateId": 13350, + "maxStateId": 13350, + "displayName": "Element 58", + "defaultState": 13350, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_26", + "id": 13349, + "minStateId": 13349, + "maxStateId": 13349, + "displayName": "Element 26", + "defaultState": 13349, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_27", + "id": 13348, + "minStateId": 13348, + "maxStateId": 13348, + "displayName": "Element 27", + "defaultState": 13348, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_24", + "id": 13347, + "minStateId": 13347, + "maxStateId": 13347, + "displayName": "Element 24", + "defaultState": 13347, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_25", + "id": 13346, + "minStateId": 13346, + "maxStateId": 13346, + "displayName": "Element 25", + "defaultState": 13346, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_22", + "id": 13345, + "minStateId": 13345, + "maxStateId": 13345, + "displayName": "Element 22", + "defaultState": 13345, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_23", + "id": 13344, + "minStateId": 13344, + "maxStateId": 13344, + "displayName": "Element 23", + "defaultState": 13344, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_20", + "id": 13343, + "minStateId": 13343, + "maxStateId": 13343, + "displayName": "Element 20", + "defaultState": 13343, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_21", + "id": 13342, + "minStateId": 13342, + "maxStateId": 13342, + "displayName": "Element 21", + "defaultState": 13342, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_28", + "id": 13341, + "minStateId": 13341, + "maxStateId": 13341, + "displayName": "Element 28", + "defaultState": 13341, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_29", + "id": 13340, + "minStateId": 13340, + "maxStateId": 13340, + "displayName": "Element 29", + "defaultState": 13340, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_39", + "id": 13339, + "minStateId": 13339, + "maxStateId": 13339, + "displayName": "Element 39", + "defaultState": 13339, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_38", + "id": 13338, + "minStateId": 13338, + "maxStateId": 13338, + "displayName": "Element 38", + "defaultState": 13338, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_31", + "id": 13337, + "minStateId": 13337, + "maxStateId": 13337, + "displayName": "Element 31", + "defaultState": 13337, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_30", + "id": 13336, + "minStateId": 13336, + "maxStateId": 13336, + "displayName": "Element 30", + "defaultState": 13336, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_33", + "id": 13335, + "minStateId": 13335, + "maxStateId": 13335, + "displayName": "Element 33", + "defaultState": 13335, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_32", + "id": 13334, + "minStateId": 13334, + "maxStateId": 13334, + "displayName": "Element 32", + "defaultState": 13334, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_35", + "id": 13333, + "minStateId": 13333, + "maxStateId": 13333, + "displayName": "Element 35", + "defaultState": 13333, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_34", + "id": 13332, + "minStateId": 13332, + "maxStateId": 13332, + "displayName": "Element 34", + "defaultState": 13332, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_37", + "id": 13331, + "minStateId": 13331, + "maxStateId": 13331, + "displayName": "Element 37", + "defaultState": 13331, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_36", + "id": 13330, + "minStateId": 13330, + "maxStateId": 13330, + "displayName": "Element 36", + "defaultState": 13330, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_19", + "id": 13329, + "minStateId": 13329, + "maxStateId": 13329, + "displayName": "Element 19", + "defaultState": 13329, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_18", + "id": 13328, + "minStateId": 13328, + "maxStateId": 13328, + "displayName": "Element 18", + "defaultState": 13328, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_17", + "id": 13327, + "minStateId": 13327, + "maxStateId": 13327, + "displayName": "Element 17", + "defaultState": 13327, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_16", + "id": 13326, + "minStateId": 13326, + "maxStateId": 13326, + "displayName": "Element 16", + "defaultState": 13326, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_15", + "id": 13325, + "minStateId": 13325, + "maxStateId": 13325, + "displayName": "Element 15", + "defaultState": 13325, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_14", + "id": 13324, + "minStateId": 13324, + "maxStateId": 13324, + "displayName": "Element 14", + "defaultState": 13324, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_13", + "id": 13323, + "minStateId": 13323, + "maxStateId": 13323, + "displayName": "Element 13", + "defaultState": 13323, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_12", + "id": 13322, + "minStateId": 13322, + "maxStateId": 13322, + "displayName": "Element 12", + "defaultState": 13322, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_11", + "id": 13321, + "minStateId": 13321, + "maxStateId": 13321, + "displayName": "Element 11", + "defaultState": 13321, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_10", + "id": 13320, + "minStateId": 13320, + "maxStateId": 13320, + "displayName": "Element 10", + "defaultState": 13320, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1000, + "name": "weathered_copper_bulb", + "displayName": "Weathered Copper Bulb", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13274, + "minStateId": 13274, + "maxStateId": 13277, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "name": "hard_pink_stained_glass_pane", + "id": 13251, + "minStateId": 13251, + "maxStateId": 13251, + "displayName": "Hard Pink Stained Glass Pane", + "defaultState": 13251, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "colored_torch_rg", + "id": 13239, + "minStateId": 13239, + "maxStateId": 13250, + "displayName": "Colored Torch Rg", + "defaultState": 13239, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "colored_torch_bp", + "id": 13227, + "minStateId": 13227, + "maxStateId": 13238, + "displayName": "Colored Torch Bp", + "defaultState": 13227, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1009, + "name": "cave_vines_head_with_berries", + "displayName": "Cave Vines", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13182, + "minStateId": 13182, + "maxStateId": 13207, + "drops": [], + "boundingBox": "empty" + }, + { + "name": "chemical_heat", + "id": 13144, + "minStateId": 13144, + "maxStateId": 13144, + "displayName": "Chemical Heat", + "defaultState": 13144, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1011, + "name": "spore_blossom", + "displayName": "Spore Blossom", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13015, + "minStateId": 13015, + "maxStateId": 13015, + "drops": [233], + "boundingBox": "empty" + }, + { + "id": 1026, + "name": "cobbled_deepslate_slab", + "displayName": "Cobbled Deepslate Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13011, + "minStateId": 13011, + "maxStateId": 13012, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [652], + "boundingBox": "block" + }, + { + "id": 1037, + "name": "deepslate_brick_stairs", + "displayName": "Deepslate Brick Stairs", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13125, + "minStateId": 13125, + "maxStateId": 13132, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [637], + "boundingBox": "block" + }, + { + "name": "netherreactor", + "id": 13124, + "minStateId": 13124, + "maxStateId": 13124, + "displayName": "Netherreactor", + "defaultState": 13124, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1007, + "name": "pointed_dripstone", + "displayName": "Pointed Dripstone", + "hardness": 1.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13113, + "minStateId": 13113, + "maxStateId": 13122, + "drops": [1259], + "boundingBox": "block" + }, + { + "id": 1059, + "name": "heavy_core", + "displayName": "Heavy Core", + "hardness": 10, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13010, + "minStateId": 13010, + "maxStateId": 13010, + "drops": [], + "boundingBox": "block" + }, + { + "name": "chemistry_table", + "id": 12994, + "minStateId": 12994, + "maxStateId": 13009, + "displayName": "Chemistry Table", + "defaultState": 12994, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "camera", + "id": 12984, + "minStateId": 12984, + "maxStateId": 12984, + "displayName": "Camera", + "defaultState": 12984, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_8", + "id": 12982, + "minStateId": 12982, + "maxStateId": 12982, + "displayName": "Element 8", + "defaultState": 12982, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_9", + "id": 12981, + "minStateId": 12981, + "maxStateId": 12981, + "displayName": "Element 9", + "defaultState": 12981, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_6", + "id": 12980, + "minStateId": 12980, + "maxStateId": 12980, + "displayName": "Element 6", + "defaultState": 12980, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_7", + "id": 12979, + "minStateId": 12979, + "maxStateId": 12979, + "displayName": "Element 7", + "defaultState": 12979, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_4", + "id": 12978, + "minStateId": 12978, + "maxStateId": 12978, + "displayName": "Element 4", + "defaultState": 12978, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_5", + "id": 12977, + "minStateId": 12977, + "maxStateId": 12977, + "displayName": "Element 5", + "defaultState": 12977, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_2", + "id": 12976, + "minStateId": 12976, + "maxStateId": 12976, + "displayName": "Element 2", + "defaultState": 12976, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_3", + "id": 12975, + "minStateId": 12975, + "maxStateId": 12975, + "displayName": "Element 3", + "defaultState": 12975, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_0", + "id": 12974, + "minStateId": 12974, + "maxStateId": 12974, + "displayName": "Element 0", + "defaultState": 12974, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_1", + "id": 12973, + "minStateId": 12973, + "maxStateId": 12973, + "displayName": "Element 1", + "defaultState": 12973, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_cyan_stained_glass_pane", + "id": 12924, + "minStateId": 12924, + "maxStateId": 12924, + "displayName": "Hard Cyan Stained Glass Pane", + "defaultState": 12924, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_white_stained_glass_pane", + "id": 12911, + "minStateId": 12911, + "maxStateId": 12911, + "displayName": "Hard White Stained Glass Pane", + "defaultState": 12911, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "allow", + "id": 12346, + "minStateId": 12346, + "maxStateId": 12346, + "displayName": "Allow", + "defaultState": 12346, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_purple_stained_glass_pane", + "id": 12264, + "minStateId": 12264, + "maxStateId": 12264, + "displayName": "Hard Purple Stained Glass Pane", + "defaultState": 12264, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_red_stained_glass_pane", + "id": 12254, + "minStateId": 12254, + "maxStateId": 12254, + "displayName": "Hard Red Stained Glass Pane", + "defaultState": 12254, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_red_stained_glass", + "id": 12126, + "minStateId": 12126, + "maxStateId": 12126, + "displayName": "Hard Red Stained Glass", + "defaultState": 12126, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1012, + "name": "azalea", + "displayName": "Azalea", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12096, + "minStateId": 12096, + "maxStateId": 12096, + "drops": [197], + "boundingBox": "block" + }, + { + "id": 1016, + "name": "moss_block", + "displayName": "Moss Block", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11733, + "minStateId": 11733, + "maxStateId": 11733, + "drops": [247], + "boundingBox": "block" + }, + { + "id": 1022, + "name": "mud", + "displayName": "Mud", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11878, + "minStateId": 11878, + "maxStateId": 11878, + "drops": [32], + "boundingBox": "block" + }, + { + "id": 1024, + "name": "cobbled_deepslate", + "displayName": "Cobbled Deepslate", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11874, + "minStateId": 11874, + "maxStateId": 11874, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [9], + "boundingBox": "block" + }, + { + "name": "hard_green_stained_glass", + "id": 11708, + "minStateId": 11708, + "maxStateId": 11708, + "displayName": "Hard Green Stained Glass", + "defaultState": 11708, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_gray_stained_glass_pane", + "id": 11664, + "minStateId": 11664, + "maxStateId": 11664, + "displayName": "Hard Gray Stained Glass Pane", + "defaultState": 11664, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1051, + "name": "verdant_froglight", + "displayName": "Verdant Froglight", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 11661, + "minStateId": 11661, + "maxStateId": 11663, + "drops": [1261], + "boundingBox": "block" + }, + { + "id": 1052, + "name": "pearlescent_froglight", + "displayName": "Pearlescent Froglight", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 11599, + "minStateId": 11599, + "maxStateId": 11601, + "drops": [1262], + "boundingBox": "block" + }, + { + "id": 1055, + "name": "decorated_pot", + "displayName": "Decorated Pot", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11925, + "minStateId": 11925, + "maxStateId": 11928, + "drops": [288], + "boundingBox": "block" + }, + { + "name": "hard_lime_stained_glass", + "id": 11566, + "minStateId": 11566, + "maxStateId": 11566, + "displayName": "Hard Lime Stained Glass", + "defaultState": 11566, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_magenta_stained_glass_pane", + "id": 11470, + "minStateId": 11470, + "maxStateId": 11470, + "displayName": "Hard Magenta Stained Glass Pane", + "defaultState": 11470, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1005, + "name": "waxed_oxidized_copper_bulb", + "displayName": "Waxed Oxidized Copper Bulb", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11414, + "minStateId": 11414, + "maxStateId": 11417, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "name": "hard_orange_stained_glass", + "id": 11273, + "minStateId": 11273, + "maxStateId": 11273, + "displayName": "Hard Orange Stained Glass", + "defaultState": 11273, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1058, + "name": "vault", + "displayName": "Vault", + "hardness": 50, + "resistance": 50, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 6, + "filterLight": 1, + "defaultState": 11217, + "minStateId": 11217, + "maxStateId": 11248, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "name": "hard_black_stained_glass", + "id": 10662, + "minStateId": 10662, + "maxStateId": 10662, + "displayName": "Hard Black Stained Glass", + "defaultState": 10662, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1004, + "name": "waxed_weathered_copper_bulb", + "displayName": "Waxed Weathered Copper Bulb", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10020, + "minStateId": 10020, + "maxStateId": 10023, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 1010, + "name": "cave_vines_body_with_berries", + "displayName": "Cave Vines Plant", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10588, + "minStateId": 10588, + "maxStateId": 10613, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1017, + "name": "big_dripleaf", + "displayName": "Big Dripleaf", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10667, + "minStateId": 10667, + "maxStateId": 10698, + "drops": [249], + "boundingBox": "block" + }, + { + "id": 8044, + "name": "cobbled_deepslate_double_slab", + "displayName": "Cobbled Deepslate Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10055, + "minStateId": 10055, + "maxStateId": 10056, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [652], + "boundingBox": "block" + }, + { + "id": 1054, + "name": "reinforced_deepslate", + "displayName": "Reinforced Deepslate", + "hardness": 55, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10000, + "minStateId": 10000, + "maxStateId": 10000, + "drops": [], + "boundingBox": "block" + }, + { + "name": "deny", + "id": 9535, + "minStateId": 9535, + "maxStateId": 9535, + "displayName": "Deny", + "defaultState": 9535, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_118", + "id": 9349, + "minStateId": 9349, + "maxStateId": 9349, + "displayName": "Element 118", + "defaultState": 9349, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_114", + "id": 9348, + "minStateId": 9348, + "maxStateId": 9348, + "displayName": "Element 114", + "defaultState": 9348, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_115", + "id": 9347, + "minStateId": 9347, + "maxStateId": 9347, + "displayName": "Element 115", + "defaultState": 9347, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_116", + "id": 9346, + "minStateId": 9346, + "maxStateId": 9346, + "displayName": "Element 116", + "defaultState": 9346, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_117", + "id": 9345, + "minStateId": 9345, + "maxStateId": 9345, + "displayName": "Element 117", + "defaultState": 9345, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_110", + "id": 9344, + "minStateId": 9344, + "maxStateId": 9344, + "displayName": "Element 110", + "defaultState": 9344, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_111", + "id": 9343, + "minStateId": 9343, + "maxStateId": 9343, + "displayName": "Element 111", + "defaultState": 9343, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_112", + "id": 9342, + "minStateId": 9342, + "maxStateId": 9342, + "displayName": "Element 112", + "defaultState": 9342, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_113", + "id": 9341, + "minStateId": 9341, + "maxStateId": 9341, + "displayName": "Element 113", + "defaultState": 9341, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_109", + "id": 9340, + "minStateId": 9340, + "maxStateId": 9340, + "displayName": "Element 109", + "defaultState": 9340, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_108", + "id": 9339, + "minStateId": 9339, + "maxStateId": 9339, + "displayName": "Element 108", + "defaultState": 9339, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_107", + "id": 9338, + "minStateId": 9338, + "maxStateId": 9338, + "displayName": "Element 107", + "defaultState": 9338, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_106", + "id": 9337, + "minStateId": 9337, + "maxStateId": 9337, + "displayName": "Element 106", + "defaultState": 9337, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_105", + "id": 9336, + "minStateId": 9336, + "maxStateId": 9336, + "displayName": "Element 105", + "defaultState": 9336, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_104", + "id": 9335, + "minStateId": 9335, + "maxStateId": 9335, + "displayName": "Element 104", + "defaultState": 9335, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_103", + "id": 9334, + "minStateId": 9334, + "maxStateId": 9334, + "displayName": "Element 103", + "defaultState": 9334, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_102", + "id": 9333, + "minStateId": 9333, + "maxStateId": 9333, + "displayName": "Element 102", + "defaultState": 9333, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_101", + "id": 9332, + "minStateId": 9332, + "maxStateId": 9332, + "displayName": "Element 101", + "defaultState": 9332, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "element_100", + "id": 9331, + "minStateId": 9331, + "maxStateId": 9331, + "displayName": "Element 100", + "defaultState": 9331, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1013, + "name": "flowering_azalea", + "displayName": "Flowering Azalea", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9253, + "minStateId": 9253, + "maxStateId": 9253, + "drops": [198], + "boundingBox": "block" + }, + { + "id": 1014, + "name": "moss_carpet", + "displayName": "Moss Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 747, + "minStateId": 747, + "maxStateId": 747, + "drops": [245], + "boundingBox": "block" + }, + { + "id": 1021, + "name": "dirt_with_roots", + "displayName": "Rooted Dirt", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9150, + "minStateId": 9150, + "maxStateId": 9150, + "drops": [31], + "boundingBox": "block" + }, + { + "id": 1023, + "name": "deepslate", + "displayName": "Deepslate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 684, + "minStateId": 684, + "maxStateId": 686, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [9], + "boundingBox": "block" + }, + { + "id": 1029, + "name": "polished_deepslate_stairs", + "displayName": "Polished Deepslate Stairs", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1043, + "minStateId": 1043, + "maxStateId": 1050, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [636], + "boundingBox": "block" + }, + { + "id": 1030, + "name": "polished_deepslate_slab", + "displayName": "Polished Deepslate Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 749, + "minStateId": 749, + "maxStateId": 750, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [653], + "boundingBox": "block" + }, + { + "id": 8045, + "name": "polished_deepslate_double_slab", + "displayName": "Polished Deepslate Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1367, + "minStateId": 1367, + "maxStateId": 1368, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [653], + "boundingBox": "block" + }, + { + "id": 1034, + "name": "deepslate_tile_double_slab", + "displayName": "Deepslate Tile Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1115, + "minStateId": 1115, + "maxStateId": 1116, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [655], + "boundingBox": "block" + }, + { + "id": 1036, + "name": "deepslate_bricks", + "displayName": "Deepslate Bricks", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9238, + "minStateId": 9238, + "maxStateId": 9238, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [346], + "boundingBox": "block" + }, + { + "name": "hard_light_blue_stained_glass_pane", + "id": 9133, + "minStateId": 9133, + "maxStateId": 9133, + "displayName": "Hard Light Blue Stained Glass Pane", + "defaultState": 9133, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1038, + "name": "deepslate_brick_slab", + "displayName": "Deepslate Brick Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6091, + "minStateId": 6091, + "maxStateId": 6092, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [654], + "boundingBox": "block" + }, + { + "id": 1040, + "name": "chiseled_deepslate", + "displayName": "Chiseled Deepslate", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8996, + "minStateId": 8996, + "maxStateId": 8996, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [350], + "boundingBox": "block" + }, + { + "id": 1041, + "name": "cracked_deepslate_bricks", + "displayName": "Cracked Deepslate Bricks", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9114, + "minStateId": 9114, + "maxStateId": 9114, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [347], + "boundingBox": "block" + }, + { + "id": 1046, + "name": "raw_copper_block", + "displayName": "Block of Raw Copper", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9039, + "minStateId": 9039, + "maxStateId": 9039, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [83], + "boundingBox": "block" + }, + { + "name": "border_block", + "id": 8644, + "minStateId": 8644, + "maxStateId": 8805, + "displayName": "Border Block", + "defaultState": 8644, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 8046, + "name": "cave_vines", + "displayName": "Cave Vines Plant", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8118, + "minStateId": 8118, + "maxStateId": 8143, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1035, + "name": "deepslate_tile_wall", + "displayName": "Deepslate Tile Wall", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8833, + "minStateId": 8833, + "maxStateId": 8994, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [418], + "boundingBox": "block" + }, + { + "name": "hard_glass", + "id": 8093, + "minStateId": 8093, + "maxStateId": 8093, + "displayName": "Hard Glass", + "defaultState": 8093, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1015, + "name": "pink_petals", + "displayName": "Pink Petals", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7512, + "minStateId": 7512, + "maxStateId": 7543, + "drops": [246], + "boundingBox": "empty" + }, + { + "id": 1033, + "name": "deepslate_tile_stairs", + "displayName": "Deepslate Tile Stairs", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7940, + "minStateId": 7940, + "maxStateId": 7947, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [638], + "boundingBox": "block" + }, + { + "id": 1043, + "name": "infested_deepslate", + "displayName": "Infested Deepslate", + "hardness": 1.5, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7928, + "minStateId": 7928, + "maxStateId": 7930, + "drops": [], + "boundingBox": "block" + }, + { + "name": "unknown", + "id": 7479, + "minStateId": 7479, + "maxStateId": 7479, + "displayName": "Unknown", + "defaultState": 7479, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "reserved6", + "id": 7470, + "minStateId": 7470, + "maxStateId": 7470, + "displayName": "Reserved6", + "defaultState": 7470, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_yellow_stained_glass", + "id": 7452, + "minStateId": 7452, + "maxStateId": 7452, + "displayName": "Hard Yellow Stained Glass", + "defaultState": 7452, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_light_gray_stained_glass_pane", + "id": 7428, + "minStateId": 7428, + "maxStateId": 7428, + "displayName": "Hard Light Gray Stained Glass Pane", + "defaultState": 7428, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1032, + "name": "deepslate_tiles", + "displayName": "Deepslate Tiles", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7426, + "minStateId": 7426, + "maxStateId": 7426, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [348], + "boundingBox": "block" + }, + { + "name": "hard_lime_stained_glass_pane", + "id": 7421, + "minStateId": 7421, + "maxStateId": 7421, + "displayName": "Hard Lime Stained Glass Pane", + "defaultState": 7421, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1053, + "name": "frog_spawn", + "displayName": "Frogspawn", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7231, + "minStateId": 7231, + "maxStateId": 7231, + "drops": [], + "boundingBox": "empty" + }, + { + "name": "hard_purple_stained_glass", + "id": 7183, + "minStateId": 7183, + "maxStateId": 7183, + "displayName": "Hard Purple Stained Glass", + "defaultState": 7183, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_blue_stained_glass", + "id": 7182, + "minStateId": 7182, + "maxStateId": 7182, + "displayName": "Hard Blue Stained Glass", + "defaultState": 7182, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_cyan_stained_glass", + "id": 7179, + "minStateId": 7179, + "maxStateId": 7179, + "displayName": "Hard Cyan Stained Glass", + "defaultState": 7179, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1019, + "name": "small_dripleaf_block", + "displayName": "Small Dripleaf", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7135, + "minStateId": 7135, + "maxStateId": 7142, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 8047, + "name": "deepslate_tile_slab", + "displayName": "Deepslate Tile Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7079, + "minStateId": 7079, + "maxStateId": 7080, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [655], + "boundingBox": "block" + }, + { + "name": "client_request_placeholder_block", + "id": 7069, + "minStateId": 7069, + "maxStateId": 7069, + "displayName": "Client Request Placeholder Block", + "defaultState": 7069, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "frame", + "id": 7040, + "minStateId": 7040, + "maxStateId": 7063, + "displayName": "Frame", + "defaultState": 7040, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_yellow_stained_glass_pane", + "id": 6984, + "minStateId": 6984, + "maxStateId": 6984, + "displayName": "Hard Yellow Stained Glass Pane", + "defaultState": 6984, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1003, + "name": "waxed_exposed_copper_bulb", + "displayName": "Waxed Exposed Copper Bulb", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6978, + "minStateId": 6978, + "maxStateId": 6981, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 1042, + "name": "cracked_deepslate_tiles", + "displayName": "Cracked Deepslate Tiles", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6941, + "minStateId": 6941, + "maxStateId": 6941, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [349], + "boundingBox": "block" + }, + { + "name": "hard_magenta_stained_glass", + "id": 6903, + "minStateId": 6903, + "maxStateId": 6903, + "displayName": "Hard Magenta Stained Glass", + "defaultState": 6903, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_white_stained_glass", + "id": 6680, + "minStateId": 6680, + "maxStateId": 6680, + "displayName": "Hard White Stained Glass", + "defaultState": 6680, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "glowingobsidian", + "id": 5901, + "minStateId": 5901, + "maxStateId": 5901, + "displayName": "Glowingobsidian", + "defaultState": 5901, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 8048, + "name": "deepslate_brick_double_slab", + "displayName": "Deepslate Brick Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4926, + "minStateId": 4926, + "maxStateId": 4927, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [654], + "boundingBox": "block" + }, + { + "name": "underwater_torch", + "id": 4920, + "minStateId": 4920, + "maxStateId": 4925, + "displayName": "Underwater Torch", + "defaultState": 4920, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1006, + "name": "lightning_rod", + "displayName": "Lightning Rod", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2641, + "minStateId": 2641, + "maxStateId": 2646, + "harvestTools": {"824": true, "834": true, "839": true, "844": true}, + "drops": [673], + "boundingBox": "block" + }, + { + "name": "hard_light_blue_stained_glass", + "id": 2614, + "minStateId": 2614, + "maxStateId": 2614, + "displayName": "Hard Light Blue Stained Glass", + "defaultState": 2614, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_brown_stained_glass_pane", + "id": 2611, + "minStateId": 2611, + "maxStateId": 2611, + "displayName": "Hard Brown Stained Glass Pane", + "defaultState": 2611, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1001, + "name": "oxidized_copper_bulb", + "displayName": "Oxidized Copper Bulb", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2430, + "minStateId": 2430, + "maxStateId": 2433, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 1039, + "name": "deepslate_brick_wall", + "displayName": "Deepslate Brick Wall", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1201, + "minStateId": 1201, + "maxStateId": 1362, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [417], + "boundingBox": "block" + }, + { + "id": 1044, + "name": "smooth_basalt", + "displayName": "Smooth Basalt", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2612, + "minStateId": 2612, + "maxStateId": 2612, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [330], + "boundingBox": "block" + }, + { + "name": "invisible_bedrock", + "id": 2427, + "minStateId": 2427, + "maxStateId": 2427, + "displayName": "Invisible Bedrock", + "defaultState": 2427, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "stonecutter", + "id": 2399, + "minStateId": 2399, + "maxStateId": 2399, + "displayName": "Stonecutter", + "defaultState": 2399, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_glass_pane", + "id": 1802, + "minStateId": 1802, + "maxStateId": 1802, + "displayName": "Hard Glass Pane", + "defaultState": 1802, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1002, + "name": "waxed_copper_bulb", + "displayName": "Waxed Copper Bulb", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1381, + "minStateId": 1381, + "maxStateId": 1384, + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 1008, + "name": "dripstone_block", + "displayName": "Dripstone Block", + "hardness": 1.5, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2357, + "minStateId": 2357, + "maxStateId": 2357, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [26], + "boundingBox": "block" + }, + { + "id": 1047, + "name": "raw_gold_block", + "displayName": "Block of Raw Gold", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1119, + "minStateId": 1119, + "maxStateId": 1119, + "harvestTools": {"834": true, "839": true, "844": true}, + "drops": [84], + "boundingBox": "block" + }, + { + "id": 1049, + "name": "flower_pot", + "displayName": "Potted Flowering Azalea", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 785, + "minStateId": 785, + "maxStateId": 786, + "drops": [1096, 198], + "boundingBox": "block" + }, + { + "id": 1050, + "name": "ochre_froglight", + "displayName": "Ochre Froglight", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 5319, + "minStateId": 5319, + "maxStateId": 5321, + "drops": [1260], + "boundingBox": "block" + }, + { + "name": "hard_gray_stained_glass", + "id": 8049, + "minStateId": 736, + "maxStateId": 736, + "displayName": "Hard Gray Stained Glass", + "defaultState": 736, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "info_update", + "id": 8050, + "minStateId": 674, + "maxStateId": 674, + "displayName": "Info Update", + "defaultState": 674, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_black_stained_glass_pane", + "id": 8051, + "minStateId": 647, + "maxStateId": 647, + "displayName": "Hard Black Stained Glass Pane", + "defaultState": 647, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_brown_stained_glass", + "id": 8052, + "minStateId": 640, + "maxStateId": 640, + "displayName": "Hard Brown Stained Glass", + "defaultState": 640, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_orange_stained_glass_pane", + "id": 8053, + "minStateId": 632, + "maxStateId": 632, + "displayName": "Hard Orange Stained Glass Pane", + "defaultState": 632, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1020, + "name": "hanging_roots", + "displayName": "Hanging Roots", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 618, + "minStateId": 618, + "maxStateId": 618, + "drops": [], + "boundingBox": "empty" + }, + { + "name": "glow_frame", + "id": 8054, + "minStateId": 592, + "maxStateId": 615, + "displayName": "Glow Frame", + "defaultState": 592, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "id": 1025, + "name": "cobbled_deepslate_stairs", + "displayName": "Cobbled Deepslate Stairs", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 559, + "minStateId": 559, + "maxStateId": 566, + "harvestTools": {"819": true, "824": true, "829": true, "834": true, "839": true, "844": true}, + "drops": [635], + "boundingBox": "block" + }, + { + "name": "hard_green_stained_glass_pane", + "id": 8055, + "minStateId": 141, + "maxStateId": 141, + "displayName": "Hard Green Stained Glass Pane", + "defaultState": 141, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + }, + { + "name": "hard_pink_stained_glass", + "id": 8056, + "minStateId": 1, + "maxStateId": 1, + "displayName": "Hard Pink Stained Glass", + "defaultState": 1, + "hardness": 0, + "stackSize": 1, + "diggable": false, + "boundingBox": "block", + "drops": [], + "transparent": false, + "emitLight": 0, + "filterLight": 0 + } +] \ No newline at end of file diff --git a/data/bedrock/1.21.0/blocksB2J.json b/data/bedrock/1.21.0/blocksB2J.json new file mode 100644 index 000000000..d94f9930a --- /dev/null +++ b/data/bedrock/1.21.0/blocksB2J.json @@ -0,0 +1,9251 @@ +{ + "minecraft:air[]": "minecraft:air[]", + "minecraft:stone[]": "minecraft:stone[]", + "minecraft:granite[]": "minecraft:granite[]", + "minecraft:polished_granite[]": "minecraft:polished_granite[]", + "minecraft:diorite[]": "minecraft:diorite[]", + "minecraft:polished_diorite[]": "minecraft:polished_diorite[]", + "minecraft:andesite[]": "minecraft:andesite[]", + "minecraft:polished_andesite[]": "minecraft:polished_andesite[]", + "minecraft:grass_block[]": "minecraft:grass_block[snowy=false]", + "minecraft:dirt[dirt_type=normal]": "minecraft:dirt[]", + "minecraft:dirt[dirt_type=coarse]": "minecraft:coarse_dirt[]", + "minecraft:podzol[]": "minecraft:podzol[snowy=false]", + "minecraft:cobblestone[]": "minecraft:cobblestone[]", + "minecraft:oak_planks[]": "minecraft:oak_planks[]", + "minecraft:spruce_planks[]": "minecraft:spruce_planks[]", + "minecraft:birch_planks[]": "minecraft:birch_planks[]", + "minecraft:jungle_planks[]": "minecraft:jungle_planks[]", + "minecraft:acacia_planks[]": "minecraft:acacia_planks[]", + "minecraft:cherry_planks[]": "minecraft:cherry_planks[]", + "minecraft:dark_oak_planks[]": "minecraft:dark_oak_planks[]", + "minecraft:mangrove_planks[]": "minecraft:mangrove_planks[]", + "minecraft:bamboo_planks[]": "minecraft:bamboo_planks[]", + "minecraft:bamboo_mosaic[]": "minecraft:bamboo_mosaic[]", + "minecraft:oak_sapling[age_bit=0]": "minecraft:oak_sapling[stage=0]", + "minecraft:oak_sapling[age_bit=1]": "minecraft:oak_sapling[stage=1]", + "minecraft:spruce_sapling[age_bit=0]": "minecraft:spruce_sapling[stage=0]", + "minecraft:spruce_sapling[age_bit=1]": "minecraft:spruce_sapling[stage=1]", + "minecraft:birch_sapling[age_bit=0]": "minecraft:birch_sapling[stage=0]", + "minecraft:birch_sapling[age_bit=1]": "minecraft:birch_sapling[stage=1]", + "minecraft:jungle_sapling[age_bit=0]": "minecraft:jungle_sapling[stage=0]", + "minecraft:jungle_sapling[age_bit=1]": "minecraft:jungle_sapling[stage=1]", + "minecraft:acacia_sapling[age_bit=0]": "minecraft:acacia_sapling[stage=0]", + "minecraft:acacia_sapling[age_bit=1]": "minecraft:acacia_sapling[stage=1]", + "minecraft:cherry_sapling[age_bit=0]": "minecraft:cherry_sapling[stage=0]", + "minecraft:cherry_sapling[age_bit=1]": "minecraft:cherry_sapling[stage=1]", + "minecraft:dark_oak_sapling[age_bit=0]": "minecraft:dark_oak_sapling[stage=0]", + "minecraft:dark_oak_sapling[age_bit=1]": "minecraft:dark_oak_sapling[stage=1]", + "minecraft:mangrove_propagule[hanging=1,propagule_stage=0]": "minecraft:mangrove_propagule[age=4,hanging=true,stage=0,waterlogged=false]", + "minecraft:mangrove_propagule[hanging=1,propagule_stage=1]": "minecraft:mangrove_propagule[age=4,hanging=true,stage=1,waterlogged=false]", + "minecraft:mangrove_propagule[hanging=0,propagule_stage=0]": "minecraft:mangrove_propagule[age=4,hanging=false,stage=0,waterlogged=false]", + "minecraft:mangrove_propagule[hanging=0,propagule_stage=1]": "minecraft:mangrove_propagule[age=4,hanging=false,stage=1,waterlogged=false]", + "minecraft:bedrock[infiniburn_bit=0]": "minecraft:bedrock[]", + "minecraft:water[liquid_depth=0]": "minecraft:water[level=0]", + "minecraft:flowing_water[liquid_depth=1]": "minecraft:water[level=1]", + "minecraft:flowing_water[liquid_depth=2]": "minecraft:water[level=2]", + "minecraft:flowing_water[liquid_depth=3]": "minecraft:water[level=3]", + "minecraft:flowing_water[liquid_depth=4]": "minecraft:water[level=4]", + "minecraft:flowing_water[liquid_depth=5]": "minecraft:water[level=5]", + "minecraft:flowing_water[liquid_depth=6]": "minecraft:water[level=6]", + "minecraft:flowing_water[liquid_depth=7]": "minecraft:water[level=7]", + "minecraft:flowing_water[liquid_depth=8]": "minecraft:water[level=8]", + "minecraft:flowing_water[liquid_depth=9]": "minecraft:water[level=9]", + "minecraft:flowing_water[liquid_depth=10]": "minecraft:water[level=10]", + "minecraft:flowing_water[liquid_depth=11]": "minecraft:water[level=11]", + "minecraft:flowing_water[liquid_depth=12]": "minecraft:water[level=12]", + "minecraft:flowing_water[liquid_depth=13]": "minecraft:water[level=13]", + "minecraft:flowing_water[liquid_depth=14]": "minecraft:water[level=14]", + "minecraft:flowing_water[liquid_depth=15]": "minecraft:water[level=15]", + "minecraft:lava[liquid_depth=0]": "minecraft:lava[level=0]", + "minecraft:flowing_lava[liquid_depth=1]": "minecraft:lava[level=1]", + "minecraft:flowing_lava[liquid_depth=2]": "minecraft:lava[level=2]", + "minecraft:flowing_lava[liquid_depth=3]": "minecraft:lava[level=3]", + "minecraft:flowing_lava[liquid_depth=4]": "minecraft:lava[level=4]", + "minecraft:flowing_lava[liquid_depth=5]": "minecraft:lava[level=5]", + "minecraft:flowing_lava[liquid_depth=6]": "minecraft:lava[level=6]", + "minecraft:flowing_lava[liquid_depth=7]": "minecraft:lava[level=7]", + "minecraft:flowing_lava[liquid_depth=8]": "minecraft:lava[level=8]", + "minecraft:flowing_lava[liquid_depth=9]": "minecraft:lava[level=9]", + "minecraft:flowing_lava[liquid_depth=10]": "minecraft:lava[level=10]", + "minecraft:flowing_lava[liquid_depth=11]": "minecraft:lava[level=11]", + "minecraft:flowing_lava[liquid_depth=12]": "minecraft:lava[level=12]", + "minecraft:flowing_lava[liquid_depth=13]": "minecraft:lava[level=13]", + "minecraft:flowing_lava[liquid_depth=14]": "minecraft:lava[level=14]", + "minecraft:flowing_lava[liquid_depth=15]": "minecraft:lava[level=15]", + "minecraft:sand[sand_type=normal]": "minecraft:sand[]", + "minecraft:suspicious_sand[brushed_progress=0,hanging=0]": "minecraft:suspicious_sand[dusted=0]", + "minecraft:suspicious_sand[brushed_progress=1,hanging=0]": "minecraft:suspicious_sand[dusted=1]", + "minecraft:suspicious_sand[brushed_progress=2,hanging=0]": "minecraft:suspicious_sand[dusted=2]", + "minecraft:suspicious_sand[brushed_progress=3,hanging=0]": "minecraft:suspicious_sand[dusted=3]", + "minecraft:sand[sand_type=red]": "minecraft:red_sand[]", + "minecraft:gravel[]": "minecraft:gravel[]", + "minecraft:suspicious_gravel[brushed_progress=0,hanging=0]": "minecraft:suspicious_gravel[dusted=0]", + "minecraft:suspicious_gravel[brushed_progress=1,hanging=0]": "minecraft:suspicious_gravel[dusted=1]", + "minecraft:suspicious_gravel[brushed_progress=2,hanging=0]": "minecraft:suspicious_gravel[dusted=2]", + "minecraft:suspicious_gravel[brushed_progress=3,hanging=0]": "minecraft:suspicious_gravel[dusted=3]", + "minecraft:gold_ore[]": "minecraft:gold_ore[]", + "minecraft:deepslate_gold_ore[]": "minecraft:deepslate_gold_ore[]", + "minecraft:iron_ore[]": "minecraft:iron_ore[]", + "minecraft:deepslate_iron_ore[]": "minecraft:deepslate_iron_ore[]", + "minecraft:coal_ore[]": "minecraft:coal_ore[]", + "minecraft:deepslate_coal_ore[]": "minecraft:deepslate_coal_ore[]", + "minecraft:nether_gold_ore[]": "minecraft:nether_gold_ore[]", + "minecraft:oak_log[pillar_axis=x]": "minecraft:oak_log[axis=x]", + "minecraft:oak_log[pillar_axis=y]": "minecraft:oak_log[axis=y]", + "minecraft:oak_log[pillar_axis=z]": "minecraft:oak_log[axis=z]", + "minecraft:spruce_log[pillar_axis=x]": "minecraft:spruce_log[axis=x]", + "minecraft:spruce_log[pillar_axis=y]": "minecraft:spruce_log[axis=y]", + "minecraft:spruce_log[pillar_axis=z]": "minecraft:spruce_log[axis=z]", + "minecraft:birch_log[pillar_axis=x]": "minecraft:birch_log[axis=x]", + "minecraft:birch_log[pillar_axis=y]": "minecraft:birch_log[axis=y]", + "minecraft:birch_log[pillar_axis=z]": "minecraft:birch_log[axis=z]", + "minecraft:jungle_log[pillar_axis=x]": "minecraft:jungle_log[axis=x]", + "minecraft:jungle_log[pillar_axis=y]": "minecraft:jungle_log[axis=y]", + "minecraft:jungle_log[pillar_axis=z]": "minecraft:jungle_log[axis=z]", + "minecraft:acacia_log[pillar_axis=x]": "minecraft:acacia_log[axis=x]", + "minecraft:acacia_log[pillar_axis=y]": "minecraft:acacia_log[axis=y]", + "minecraft:acacia_log[pillar_axis=z]": "minecraft:acacia_log[axis=z]", + "minecraft:cherry_log[pillar_axis=x]": "minecraft:cherry_log[axis=x]", + "minecraft:cherry_log[pillar_axis=y]": "minecraft:cherry_log[axis=y]", + "minecraft:cherry_log[pillar_axis=z]": "minecraft:cherry_log[axis=z]", + "minecraft:dark_oak_log[pillar_axis=x]": "minecraft:dark_oak_log[axis=x]", + "minecraft:dark_oak_log[pillar_axis=y]": "minecraft:dark_oak_log[axis=y]", + "minecraft:dark_oak_log[pillar_axis=z]": "minecraft:dark_oak_log[axis=z]", + "minecraft:mangrove_log[pillar_axis=x]": "minecraft:mangrove_log[axis=x]", + "minecraft:mangrove_log[pillar_axis=y]": "minecraft:mangrove_log[axis=y]", + "minecraft:mangrove_log[pillar_axis=z]": "minecraft:mangrove_log[axis=z]", + "minecraft:mangrove_roots[]": "minecraft:mangrove_roots[waterlogged=false]", + "minecraft:muddy_mangrove_roots[pillar_axis=x]": "minecraft:muddy_mangrove_roots[axis=x]", + "minecraft:muddy_mangrove_roots[pillar_axis=y]": "minecraft:muddy_mangrove_roots[axis=y]", + "minecraft:muddy_mangrove_roots[pillar_axis=z]": "minecraft:muddy_mangrove_roots[axis=z]", + "minecraft:bamboo_block[pillar_axis=x]": "minecraft:bamboo_block[axis=x]", + "minecraft:bamboo_block[pillar_axis=y]": "minecraft:bamboo_block[axis=y]", + "minecraft:bamboo_block[pillar_axis=z]": "minecraft:bamboo_block[axis=z]", + "minecraft:stripped_spruce_log[pillar_axis=x]": "minecraft:stripped_spruce_log[axis=x]", + "minecraft:stripped_spruce_log[pillar_axis=y]": "minecraft:stripped_spruce_log[axis=y]", + "minecraft:stripped_spruce_log[pillar_axis=z]": "minecraft:stripped_spruce_log[axis=z]", + "minecraft:stripped_birch_log[pillar_axis=x]": "minecraft:stripped_birch_log[axis=x]", + "minecraft:stripped_birch_log[pillar_axis=y]": "minecraft:stripped_birch_log[axis=y]", + "minecraft:stripped_birch_log[pillar_axis=z]": "minecraft:stripped_birch_log[axis=z]", + "minecraft:stripped_jungle_log[pillar_axis=x]": "minecraft:stripped_jungle_log[axis=x]", + "minecraft:stripped_jungle_log[pillar_axis=y]": "minecraft:stripped_jungle_log[axis=y]", + "minecraft:stripped_jungle_log[pillar_axis=z]": "minecraft:stripped_jungle_log[axis=z]", + "minecraft:stripped_acacia_log[pillar_axis=x]": "minecraft:stripped_acacia_log[axis=x]", + "minecraft:stripped_acacia_log[pillar_axis=y]": "minecraft:stripped_acacia_log[axis=y]", + "minecraft:stripped_acacia_log[pillar_axis=z]": "minecraft:stripped_acacia_log[axis=z]", + "minecraft:stripped_cherry_log[pillar_axis=x]": "minecraft:stripped_cherry_log[axis=x]", + "minecraft:stripped_cherry_log[pillar_axis=y]": "minecraft:stripped_cherry_log[axis=y]", + "minecraft:stripped_cherry_log[pillar_axis=z]": "minecraft:stripped_cherry_log[axis=z]", + "minecraft:stripped_dark_oak_log[pillar_axis=x]": "minecraft:stripped_dark_oak_log[axis=x]", + "minecraft:stripped_dark_oak_log[pillar_axis=y]": "minecraft:stripped_dark_oak_log[axis=y]", + "minecraft:stripped_dark_oak_log[pillar_axis=z]": "minecraft:stripped_dark_oak_log[axis=z]", + "minecraft:stripped_oak_log[pillar_axis=x]": "minecraft:stripped_oak_log[axis=x]", + "minecraft:stripped_oak_log[pillar_axis=y]": "minecraft:stripped_oak_log[axis=y]", + "minecraft:stripped_oak_log[pillar_axis=z]": "minecraft:stripped_oak_log[axis=z]", + "minecraft:stripped_mangrove_log[pillar_axis=x]": "minecraft:stripped_mangrove_log[axis=x]", + "minecraft:stripped_mangrove_log[pillar_axis=y]": "minecraft:stripped_mangrove_log[axis=y]", + "minecraft:stripped_mangrove_log[pillar_axis=z]": "minecraft:stripped_mangrove_log[axis=z]", + "minecraft:stripped_bamboo_block[pillar_axis=x]": "minecraft:stripped_bamboo_block[axis=x]", + "minecraft:stripped_bamboo_block[pillar_axis=y]": "minecraft:stripped_bamboo_block[axis=y]", + "minecraft:stripped_bamboo_block[pillar_axis=z]": "minecraft:stripped_bamboo_block[axis=z]", + "minecraft:oak_wood[pillar_axis=x]": "minecraft:oak_wood[axis=x]", + "minecraft:oak_wood[pillar_axis=y]": "minecraft:oak_wood[axis=y]", + "minecraft:oak_wood[pillar_axis=z]": "minecraft:oak_wood[axis=z]", + "minecraft:spruce_wood[pillar_axis=x]": "minecraft:spruce_wood[axis=x]", + "minecraft:spruce_wood[pillar_axis=y]": "minecraft:spruce_wood[axis=y]", + "minecraft:spruce_wood[pillar_axis=z]": "minecraft:spruce_wood[axis=z]", + "minecraft:birch_wood[pillar_axis=x]": "minecraft:birch_wood[axis=x]", + "minecraft:birch_wood[pillar_axis=y]": "minecraft:birch_wood[axis=y]", + "minecraft:birch_wood[pillar_axis=z]": "minecraft:birch_wood[axis=z]", + "minecraft:jungle_wood[pillar_axis=x]": "minecraft:jungle_wood[axis=x]", + "minecraft:jungle_wood[pillar_axis=y]": "minecraft:jungle_wood[axis=y]", + "minecraft:jungle_wood[pillar_axis=z]": "minecraft:jungle_wood[axis=z]", + "minecraft:acacia_wood[pillar_axis=x]": "minecraft:acacia_wood[axis=x]", + "minecraft:acacia_wood[pillar_axis=y]": "minecraft:acacia_wood[axis=y]", + "minecraft:acacia_wood[pillar_axis=z]": "minecraft:acacia_wood[axis=z]", + "minecraft:cherry_wood[pillar_axis=x,stripped_bit=0]": "minecraft:cherry_wood[axis=x]", + "minecraft:cherry_wood[pillar_axis=y,stripped_bit=0]": "minecraft:cherry_wood[axis=y]", + "minecraft:cherry_wood[pillar_axis=z,stripped_bit=0]": "minecraft:cherry_wood[axis=z]", + "minecraft:dark_oak_wood[pillar_axis=x]": "minecraft:dark_oak_wood[axis=x]", + "minecraft:dark_oak_wood[pillar_axis=y]": "minecraft:dark_oak_wood[axis=y]", + "minecraft:dark_oak_wood[pillar_axis=z]": "minecraft:dark_oak_wood[axis=z]", + "minecraft:mangrove_wood[pillar_axis=x,stripped_bit=0]": "minecraft:mangrove_wood[axis=x]", + "minecraft:mangrove_wood[pillar_axis=y,stripped_bit=0]": "minecraft:mangrove_wood[axis=y]", + "minecraft:mangrove_wood[pillar_axis=z,stripped_bit=0]": "minecraft:mangrove_wood[axis=z]", + "minecraft:stripped_oak_wood[pillar_axis=x]": "minecraft:stripped_oak_wood[axis=x]", + "minecraft:stripped_oak_wood[pillar_axis=y]": "minecraft:stripped_oak_wood[axis=y]", + "minecraft:stripped_oak_wood[pillar_axis=z]": "minecraft:stripped_oak_wood[axis=z]", + "minecraft:stripped_spruce_wood[pillar_axis=x]": "minecraft:stripped_spruce_wood[axis=x]", + "minecraft:stripped_spruce_wood[pillar_axis=y]": "minecraft:stripped_spruce_wood[axis=y]", + "minecraft:stripped_spruce_wood[pillar_axis=z]": "minecraft:stripped_spruce_wood[axis=z]", + "minecraft:stripped_birch_wood[pillar_axis=x]": "minecraft:stripped_birch_wood[axis=x]", + "minecraft:stripped_birch_wood[pillar_axis=y]": "minecraft:stripped_birch_wood[axis=y]", + "minecraft:stripped_birch_wood[pillar_axis=z]": "minecraft:stripped_birch_wood[axis=z]", + "minecraft:stripped_jungle_wood[pillar_axis=x]": "minecraft:stripped_jungle_wood[axis=x]", + "minecraft:stripped_jungle_wood[pillar_axis=y]": "minecraft:stripped_jungle_wood[axis=y]", + "minecraft:stripped_jungle_wood[pillar_axis=z]": "minecraft:stripped_jungle_wood[axis=z]", + "minecraft:stripped_acacia_wood[pillar_axis=x]": "minecraft:stripped_acacia_wood[axis=x]", + "minecraft:stripped_acacia_wood[pillar_axis=y]": "minecraft:stripped_acacia_wood[axis=y]", + "minecraft:stripped_acacia_wood[pillar_axis=z]": "minecraft:stripped_acacia_wood[axis=z]", + "minecraft:stripped_cherry_wood[pillar_axis=x]": "minecraft:stripped_cherry_wood[axis=x]", + "minecraft:stripped_cherry_wood[pillar_axis=y]": "minecraft:stripped_cherry_wood[axis=y]", + "minecraft:stripped_cherry_wood[pillar_axis=z]": "minecraft:stripped_cherry_wood[axis=z]", + "minecraft:stripped_dark_oak_wood[pillar_axis=x]": "minecraft:stripped_dark_oak_wood[axis=x]", + "minecraft:stripped_dark_oak_wood[pillar_axis=y]": "minecraft:stripped_dark_oak_wood[axis=y]", + "minecraft:stripped_dark_oak_wood[pillar_axis=z]": "minecraft:stripped_dark_oak_wood[axis=z]", + "minecraft:stripped_mangrove_wood[pillar_axis=x]": "minecraft:stripped_mangrove_wood[axis=x]", + "minecraft:stripped_mangrove_wood[pillar_axis=y]": "minecraft:stripped_mangrove_wood[axis=y]", + "minecraft:stripped_mangrove_wood[pillar_axis=z]": "minecraft:stripped_mangrove_wood[axis=z]", + "minecraft:oak_leaves[persistent_bit=1,update_bit=0]": "minecraft:oak_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:oak_leaves[persistent_bit=0,update_bit=0]": "minecraft:oak_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:spruce_leaves[persistent_bit=1,update_bit=0]": "minecraft:spruce_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:spruce_leaves[persistent_bit=0,update_bit=0]": "minecraft:spruce_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:birch_leaves[persistent_bit=1,update_bit=0]": "minecraft:birch_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:birch_leaves[persistent_bit=0,update_bit=0]": "minecraft:birch_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:jungle_leaves[persistent_bit=1,update_bit=0]": "minecraft:jungle_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:jungle_leaves[persistent_bit=0,update_bit=0]": "minecraft:jungle_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:acacia_leaves[persistent_bit=1,update_bit=0]": "minecraft:acacia_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:acacia_leaves[persistent_bit=0,update_bit=0]": "minecraft:acacia_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:cherry_leaves[persistent_bit=1,update_bit=0]": "minecraft:cherry_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:cherry_leaves[persistent_bit=0,update_bit=0]": "minecraft:cherry_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:dark_oak_leaves[persistent_bit=1,update_bit=0]": "minecraft:dark_oak_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:dark_oak_leaves[persistent_bit=0,update_bit=0]": "minecraft:dark_oak_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:mangrove_leaves[persistent_bit=1,update_bit=0]": "minecraft:mangrove_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:mangrove_leaves[persistent_bit=0,update_bit=0]": "minecraft:mangrove_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:azalea_leaves[persistent_bit=1,update_bit=0]": "minecraft:azalea_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:azalea_leaves[persistent_bit=0,update_bit=0]": "minecraft:azalea_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:azalea_leaves_flowered[persistent_bit=1,update_bit=0]": "minecraft:flowering_azalea_leaves[distance=7,persistent=true,waterlogged=false]", + "minecraft:azalea_leaves_flowered[persistent_bit=0,update_bit=0]": "minecraft:flowering_azalea_leaves[distance=7,persistent=false,waterlogged=false]", + "minecraft:sponge[sponge_type=dry]": "minecraft:sponge[]", + "minecraft:sponge[sponge_type=wet]": "minecraft:wet_sponge[]", + "minecraft:glass[]": "minecraft:glass[]", + "minecraft:lapis_ore[]": "minecraft:lapis_ore[]", + "minecraft:deepslate_lapis_ore[]": "minecraft:deepslate_lapis_ore[]", + "minecraft:lapis_block[]": "minecraft:lapis_block[]", + "minecraft:dispenser[facing_direction=2,triggered_bit=1]": "minecraft:dispenser[facing=north,triggered=true]", + "minecraft:dispenser[facing_direction=2,triggered_bit=0]": "minecraft:dispenser[facing=north,triggered=false]", + "minecraft:dispenser[facing_direction=5,triggered_bit=1]": "minecraft:dispenser[facing=east,triggered=true]", + "minecraft:dispenser[facing_direction=5,triggered_bit=0]": "minecraft:dispenser[facing=east,triggered=false]", + "minecraft:dispenser[facing_direction=3,triggered_bit=1]": "minecraft:dispenser[facing=south,triggered=true]", + "minecraft:dispenser[facing_direction=3,triggered_bit=0]": "minecraft:dispenser[facing=south,triggered=false]", + "minecraft:dispenser[facing_direction=4,triggered_bit=1]": "minecraft:dispenser[facing=west,triggered=true]", + "minecraft:dispenser[facing_direction=4,triggered_bit=0]": "minecraft:dispenser[facing=west,triggered=false]", + "minecraft:dispenser[facing_direction=1,triggered_bit=1]": "minecraft:dispenser[facing=up,triggered=true]", + "minecraft:dispenser[facing_direction=1,triggered_bit=0]": "minecraft:dispenser[facing=up,triggered=false]", + "minecraft:dispenser[facing_direction=0,triggered_bit=1]": "minecraft:dispenser[facing=down,triggered=true]", + "minecraft:dispenser[facing_direction=0,triggered_bit=0]": "minecraft:dispenser[facing=down,triggered=false]", + "minecraft:sandstone[sand_stone_type=default]": "minecraft:sandstone[]", + "minecraft:sandstone[sand_stone_type=heiroglyphs]": "minecraft:chiseled_sandstone[]", + "minecraft:sandstone[sand_stone_type=cut]": "minecraft:cut_sandstone[]", + "minecraft:noteblock[]": "minecraft:note_block[instrument=custom_head,note=24,powered=false]", + "minecraft:bed[direction=2,head_piece_bit=1,occupied_bit=1]": "minecraft:black_bed[facing=north,occupied=true,part=head]", + "minecraft:bed[direction=2,head_piece_bit=0,occupied_bit=1]": "minecraft:black_bed[facing=north,occupied=true,part=foot]", + "minecraft:bed[direction=2,head_piece_bit=1,occupied_bit=0]": "minecraft:black_bed[facing=north,occupied=false,part=head]", + "minecraft:bed[direction=2,head_piece_bit=0,occupied_bit=0]": "minecraft:black_bed[facing=north,occupied=false,part=foot]", + "minecraft:bed[direction=0,head_piece_bit=1,occupied_bit=1]": "minecraft:black_bed[facing=south,occupied=true,part=head]", + "minecraft:bed[direction=0,head_piece_bit=0,occupied_bit=1]": "minecraft:black_bed[facing=south,occupied=true,part=foot]", + "minecraft:bed[direction=0,head_piece_bit=1,occupied_bit=0]": "minecraft:black_bed[facing=south,occupied=false,part=head]", + "minecraft:bed[direction=0,head_piece_bit=0,occupied_bit=0]": "minecraft:black_bed[facing=south,occupied=false,part=foot]", + "minecraft:bed[direction=1,head_piece_bit=1,occupied_bit=1]": "minecraft:black_bed[facing=west,occupied=true,part=head]", + "minecraft:bed[direction=1,head_piece_bit=0,occupied_bit=1]": "minecraft:black_bed[facing=west,occupied=true,part=foot]", + "minecraft:bed[direction=1,head_piece_bit=1,occupied_bit=0]": "minecraft:black_bed[facing=west,occupied=false,part=head]", + "minecraft:bed[direction=1,head_piece_bit=0,occupied_bit=0]": "minecraft:black_bed[facing=west,occupied=false,part=foot]", + "minecraft:bed[direction=3,head_piece_bit=1,occupied_bit=1]": "minecraft:black_bed[facing=east,occupied=true,part=head]", + "minecraft:bed[direction=3,head_piece_bit=0,occupied_bit=1]": "minecraft:black_bed[facing=east,occupied=true,part=foot]", + "minecraft:bed[direction=3,head_piece_bit=1,occupied_bit=0]": "minecraft:black_bed[facing=east,occupied=false,part=head]", + "minecraft:bed[direction=3,head_piece_bit=0,occupied_bit=0]": "minecraft:black_bed[facing=east,occupied=false,part=foot]", + "minecraft:golden_rail[rail_data_bit=1,rail_direction=0]": "minecraft:powered_rail[powered=true,shape=north_south,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=1,rail_direction=1]": "minecraft:powered_rail[powered=true,shape=east_west,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=1,rail_direction=2]": "minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=1,rail_direction=3]": "minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=1,rail_direction=4]": "minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=1,rail_direction=5]": "minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=0,rail_direction=0]": "minecraft:powered_rail[powered=false,shape=north_south,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=0,rail_direction=1]": "minecraft:powered_rail[powered=false,shape=east_west,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=0,rail_direction=2]": "minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=0,rail_direction=3]": "minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=0,rail_direction=4]": "minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=false]", + "minecraft:golden_rail[rail_data_bit=0,rail_direction=5]": "minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=1,rail_direction=0]": "minecraft:detector_rail[powered=true,shape=north_south,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=1,rail_direction=1]": "minecraft:detector_rail[powered=true,shape=east_west,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=1,rail_direction=2]": "minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=1,rail_direction=3]": "minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=1,rail_direction=4]": "minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=1,rail_direction=5]": "minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=0,rail_direction=0]": "minecraft:detector_rail[powered=false,shape=north_south,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=0,rail_direction=1]": "minecraft:detector_rail[powered=false,shape=east_west,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=0,rail_direction=2]": "minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=0,rail_direction=3]": "minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=0,rail_direction=4]": "minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false]", + "minecraft:detector_rail[rail_data_bit=0,rail_direction=5]": "minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false]", + "minecraft:sticky_piston[facing_direction=3]": "minecraft:sticky_piston[extended=false,facing=north]", + "minecraft:sticky_piston[facing_direction=4]": "minecraft:sticky_piston[extended=false,facing=east]", + "minecraft:sticky_piston[facing_direction=2]": "minecraft:sticky_piston[extended=false,facing=south]", + "minecraft:sticky_piston[facing_direction=5]": "minecraft:sticky_piston[extended=false,facing=west]", + "minecraft:sticky_piston[facing_direction=1]": "minecraft:sticky_piston[extended=false,facing=up]", + "minecraft:sticky_piston[facing_direction=0]": "minecraft:sticky_piston[extended=false,facing=down]", + "minecraft:web[]": "minecraft:cobweb[]", + "minecraft:short_grass[]": "minecraft:short_grass[]", + "minecraft:fern[]": "minecraft:fern[]", + "minecraft:deadbush[]": "minecraft:dead_bush[]", + "minecraft:seagrass[sea_grass_type=default]": "minecraft:seagrass[]", + "minecraft:seagrass[sea_grass_type=double_top]": "minecraft:tall_seagrass[half=upper]", + "minecraft:seagrass[sea_grass_type=double_bot]": "minecraft:tall_seagrass[half=lower]", + "minecraft:piston[facing_direction=3]": "minecraft:piston[extended=false,facing=north]", + "minecraft:piston[facing_direction=4]": "minecraft:piston[extended=false,facing=east]", + "minecraft:piston[facing_direction=2]": "minecraft:piston[extended=false,facing=south]", + "minecraft:piston[facing_direction=5]": "minecraft:piston[extended=false,facing=west]", + "minecraft:piston[facing_direction=1]": "minecraft:piston[extended=false,facing=up]", + "minecraft:piston[facing_direction=0]": "minecraft:piston[extended=false,facing=down]", + "minecraft:piston_arm_collision[facing_direction=3]": "minecraft:piston_head[facing=north,short=false,type=normal]", + "minecraft:sticky_piston_arm_collision[facing_direction=3]": "minecraft:piston_head[facing=north,short=false,type=sticky]", + "minecraft:piston_arm_collision[facing_direction=4]": "minecraft:piston_head[facing=east,short=false,type=normal]", + "minecraft:sticky_piston_arm_collision[facing_direction=4]": "minecraft:piston_head[facing=east,short=false,type=sticky]", + "minecraft:piston_arm_collision[facing_direction=2]": "minecraft:piston_head[facing=south,short=false,type=normal]", + "minecraft:sticky_piston_arm_collision[facing_direction=2]": "minecraft:piston_head[facing=south,short=false,type=sticky]", + "minecraft:piston_arm_collision[facing_direction=5]": "minecraft:piston_head[facing=west,short=false,type=normal]", + "minecraft:sticky_piston_arm_collision[facing_direction=5]": "minecraft:piston_head[facing=west,short=false,type=sticky]", + "minecraft:piston_arm_collision[facing_direction=1]": "minecraft:piston_head[facing=up,short=false,type=normal]", + "minecraft:sticky_piston_arm_collision[facing_direction=1]": "minecraft:piston_head[facing=up,short=false,type=sticky]", + "minecraft:piston_arm_collision[facing_direction=0]": "minecraft:piston_head[facing=down,short=false,type=normal]", + "minecraft:sticky_piston_arm_collision[facing_direction=0]": "minecraft:piston_head[facing=down,short=false,type=sticky]", + "minecraft:white_wool[]": "minecraft:white_wool[]", + "minecraft:orange_wool[]": "minecraft:orange_wool[]", + "minecraft:magenta_wool[]": "minecraft:magenta_wool[]", + "minecraft:light_blue_wool[]": "minecraft:light_blue_wool[]", + "minecraft:yellow_wool[]": "minecraft:yellow_wool[]", + "minecraft:lime_wool[]": "minecraft:lime_wool[]", + "minecraft:pink_wool[]": "minecraft:pink_wool[]", + "minecraft:gray_wool[]": "minecraft:gray_wool[]", + "minecraft:light_gray_wool[]": "minecraft:light_gray_wool[]", + "minecraft:cyan_wool[]": "minecraft:cyan_wool[]", + "minecraft:purple_wool[]": "minecraft:purple_wool[]", + "minecraft:blue_wool[]": "minecraft:blue_wool[]", + "minecraft:brown_wool[]": "minecraft:brown_wool[]", + "minecraft:green_wool[]": "minecraft:green_wool[]", + "minecraft:red_wool[]": "minecraft:red_wool[]", + "minecraft:black_wool[]": "minecraft:black_wool[]", + "minecraft:moving_block[]": "minecraft:moving_piston[facing=down,type=sticky]", + "minecraft:yellow_flower[]": "minecraft:dandelion[]", + "minecraft:torchflower[]": "minecraft:torchflower[]", + "minecraft:poppy[]": "minecraft:poppy[]", + "minecraft:blue_orchid[]": "minecraft:blue_orchid[]", + "minecraft:allium[]": "minecraft:allium[]", + "minecraft:azure_bluet[]": "minecraft:azure_bluet[]", + "minecraft:red_tulip[]": "minecraft:red_tulip[]", + "minecraft:orange_tulip[]": "minecraft:orange_tulip[]", + "minecraft:white_tulip[]": "minecraft:white_tulip[]", + "minecraft:pink_tulip[]": "minecraft:pink_tulip[]", + "minecraft:oxeye_daisy[]": "minecraft:oxeye_daisy[]", + "minecraft:cornflower[]": "minecraft:cornflower[]", + "minecraft:wither_rose[]": "minecraft:wither_rose[]", + "minecraft:lily_of_the_valley[]": "minecraft:lily_of_the_valley[]", + "minecraft:brown_mushroom[]": "minecraft:brown_mushroom[]", + "minecraft:red_mushroom[]": "minecraft:red_mushroom[]", + "minecraft:gold_block[]": "minecraft:gold_block[]", + "minecraft:iron_block[]": "minecraft:iron_block[]", + "minecraft:brick_block[]": "minecraft:bricks[]", + "minecraft:tnt[allow_underwater_bit=1,explode_bit=0]": "minecraft:tnt[unstable=true]", + "minecraft:tnt[allow_underwater_bit=0,explode_bit=0]": "minecraft:tnt[unstable=false]", + "minecraft:bookshelf[]": "minecraft:bookshelf[]", + "minecraft:chiseled_bookshelf[books_stored=63,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=31,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=47,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=15,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=55,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=23,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=39,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=7,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=59,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=27,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=43,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=11,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=51,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=19,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=35,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=3,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=61,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=29,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=45,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=13,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=53,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=21,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=37,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=5,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=57,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=25,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=41,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=9,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=49,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=17,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=33,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=1,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=62,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=30,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=46,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=14,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=54,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=22,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=38,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=6,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=58,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=26,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=42,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=10,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=50,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=18,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=34,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=2,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=60,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=28,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=44,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=12,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=52,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=20,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=36,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=4,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=56,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=24,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=40,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=8,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=48,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=16,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=32,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=0,direction=2]": "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=63,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=31,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=47,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=15,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=55,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=23,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=39,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=7,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=59,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=27,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=43,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=11,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=51,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=19,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=35,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=3,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=61,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=29,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=45,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=13,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=53,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=21,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=37,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=5,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=57,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=25,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=41,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=9,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=49,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=17,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=33,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=1,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=62,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=30,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=46,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=14,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=54,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=22,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=38,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=6,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=58,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=26,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=42,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=10,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=50,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=18,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=34,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=2,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=60,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=28,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=44,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=12,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=52,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=20,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=36,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=4,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=56,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=24,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=40,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=8,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=48,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=16,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=32,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=0,direction=0]": "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=63,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=31,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=47,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=15,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=55,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=23,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=39,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=7,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=59,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=27,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=43,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=11,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=51,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=19,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=35,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=3,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=61,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=29,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=45,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=13,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=53,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=21,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=37,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=5,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=57,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=25,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=41,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=9,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=49,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=17,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=33,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=1,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=62,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=30,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=46,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=14,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=54,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=22,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=38,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=6,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=58,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=26,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=42,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=10,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=50,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=18,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=34,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=2,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=60,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=28,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=44,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=12,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=52,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=20,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=36,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=4,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=56,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=24,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=40,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=8,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=48,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=16,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=32,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=0,direction=1]": "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=63,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=31,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=47,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=15,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=55,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=23,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=39,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=7,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=59,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=27,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=43,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=11,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=51,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=19,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=35,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=3,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=61,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=29,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=45,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=13,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=53,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=21,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=37,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=5,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=57,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=25,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=41,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=9,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=49,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=17,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=33,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=1,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=62,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=30,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=46,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=14,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=54,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=22,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=38,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=6,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=58,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=26,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=42,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=10,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=50,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=18,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=34,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=2,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=60,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=28,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=44,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=12,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=52,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=20,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=36,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=4,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=56,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=24,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=40,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=8,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=48,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=16,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]", + "minecraft:chiseled_bookshelf[books_stored=32,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]", + "minecraft:chiseled_bookshelf[books_stored=0,direction=3]": "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]", + "minecraft:mossy_cobblestone[]": "minecraft:mossy_cobblestone[]", + "minecraft:obsidian[]": "minecraft:obsidian[]", + "minecraft:torch[torch_facing_direction=top]": "minecraft:torch[]", + "minecraft:torch[torch_facing_direction=south]": "minecraft:wall_torch[facing=north]", + "minecraft:torch[torch_facing_direction=north]": "minecraft:wall_torch[facing=south]", + "minecraft:torch[torch_facing_direction=east]": "minecraft:wall_torch[facing=west]", + "minecraft:torch[torch_facing_direction=west]": "minecraft:wall_torch[facing=east]", + "minecraft:fire[age=0]": "minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=1]": "minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=2]": "minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=3]": "minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=4]": "minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=5]": "minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=6]": "minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=7]": "minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=8]": "minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=9]": "minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=10]": "minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=11]": "minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=12]": "minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=13]": "minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=14]": "minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false]", + "minecraft:fire[age=15]": "minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false]", + "minecraft:soul_fire[age=0]": "minecraft:soul_fire[]", + "minecraft:mob_spawner[]": "minecraft:spawner[]", + "minecraft:oak_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:oak_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:oak_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:oak_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:oak_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:oak_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:oak_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:oak_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:chest[minecraft:cardinal_direction=north]": "minecraft:chest[facing=north,type=right,waterlogged=false]", + "minecraft:chest[minecraft:cardinal_direction=south]": "minecraft:chest[facing=south,type=right,waterlogged=false]", + "minecraft:chest[minecraft:cardinal_direction=west]": "minecraft:chest[facing=west,type=right,waterlogged=false]", + "minecraft:chest[minecraft:cardinal_direction=east]": "minecraft:chest[facing=east,type=right,waterlogged=false]", + "minecraft:redstone_wire[redstone_signal=0]": "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=1]": "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=2]": "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=3]": "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=4]": "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=5]": "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=6]": "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=7]": "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=8]": "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=9]": "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=10]": "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=11]": "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=12]": "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=13]": "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=14]": "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=none]", + "minecraft:redstone_wire[redstone_signal=15]": "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=none]", + "minecraft:diamond_ore[]": "minecraft:diamond_ore[]", + "minecraft:deepslate_diamond_ore[]": "minecraft:deepslate_diamond_ore[]", + "minecraft:diamond_block[]": "minecraft:diamond_block[]", + "minecraft:crafting_table[]": "minecraft:crafting_table[]", + "minecraft:wheat[growth=0]": "minecraft:wheat[age=0]", + "minecraft:wheat[growth=1]": "minecraft:wheat[age=1]", + "minecraft:wheat[growth=2]": "minecraft:wheat[age=2]", + "minecraft:wheat[growth=3]": "minecraft:wheat[age=3]", + "minecraft:wheat[growth=4]": "minecraft:wheat[age=4]", + "minecraft:wheat[growth=5]": "minecraft:wheat[age=5]", + "minecraft:wheat[growth=6]": "minecraft:wheat[age=6]", + "minecraft:wheat[growth=7]": "minecraft:wheat[age=7]", + "minecraft:farmland[moisturized_amount=0]": "minecraft:farmland[moisture=0]", + "minecraft:farmland[moisturized_amount=1]": "minecraft:farmland[moisture=1]", + "minecraft:farmland[moisturized_amount=2]": "minecraft:farmland[moisture=2]", + "minecraft:farmland[moisturized_amount=3]": "minecraft:farmland[moisture=3]", + "minecraft:farmland[moisturized_amount=4]": "minecraft:farmland[moisture=4]", + "minecraft:farmland[moisturized_amount=5]": "minecraft:farmland[moisture=5]", + "minecraft:farmland[moisturized_amount=6]": "minecraft:farmland[moisture=6]", + "minecraft:farmland[moisturized_amount=7]": "minecraft:farmland[moisture=7]", + "minecraft:lit_furnace[minecraft:cardinal_direction=north]": "minecraft:furnace[facing=north,lit=true]", + "minecraft:furnace[minecraft:cardinal_direction=north]": "minecraft:furnace[facing=north,lit=false]", + "minecraft:lit_furnace[minecraft:cardinal_direction=south]": "minecraft:furnace[facing=south,lit=true]", + "minecraft:furnace[minecraft:cardinal_direction=south]": "minecraft:furnace[facing=south,lit=false]", + "minecraft:lit_furnace[minecraft:cardinal_direction=west]": "minecraft:furnace[facing=west,lit=true]", + "minecraft:furnace[minecraft:cardinal_direction=west]": "minecraft:furnace[facing=west,lit=false]", + "minecraft:lit_furnace[minecraft:cardinal_direction=east]": "minecraft:furnace[facing=east,lit=true]", + "minecraft:furnace[minecraft:cardinal_direction=east]": "minecraft:furnace[facing=east,lit=false]", + "minecraft:standing_sign[ground_sign_direction=0]": "minecraft:oak_sign[rotation=0,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=1]": "minecraft:oak_sign[rotation=1,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=2]": "minecraft:oak_sign[rotation=2,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=3]": "minecraft:oak_sign[rotation=3,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=4]": "minecraft:oak_sign[rotation=4,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=5]": "minecraft:oak_sign[rotation=5,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=6]": "minecraft:oak_sign[rotation=6,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=7]": "minecraft:oak_sign[rotation=7,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=8]": "minecraft:oak_sign[rotation=8,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=9]": "minecraft:oak_sign[rotation=9,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=10]": "minecraft:oak_sign[rotation=10,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=11]": "minecraft:oak_sign[rotation=11,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=12]": "minecraft:oak_sign[rotation=12,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=13]": "minecraft:oak_sign[rotation=13,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=14]": "minecraft:oak_sign[rotation=14,waterlogged=false]", + "minecraft:standing_sign[ground_sign_direction=15]": "minecraft:oak_sign[rotation=15,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=0]": "minecraft:spruce_sign[rotation=0,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=1]": "minecraft:spruce_sign[rotation=1,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=2]": "minecraft:spruce_sign[rotation=2,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=3]": "minecraft:spruce_sign[rotation=3,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=4]": "minecraft:spruce_sign[rotation=4,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=5]": "minecraft:spruce_sign[rotation=5,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=6]": "minecraft:spruce_sign[rotation=6,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=7]": "minecraft:spruce_sign[rotation=7,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=8]": "minecraft:spruce_sign[rotation=8,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=9]": "minecraft:spruce_sign[rotation=9,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=10]": "minecraft:spruce_sign[rotation=10,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=11]": "minecraft:spruce_sign[rotation=11,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=12]": "minecraft:spruce_sign[rotation=12,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=13]": "minecraft:spruce_sign[rotation=13,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=14]": "minecraft:spruce_sign[rotation=14,waterlogged=false]", + "minecraft:spruce_standing_sign[ground_sign_direction=15]": "minecraft:spruce_sign[rotation=15,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=0]": "minecraft:birch_sign[rotation=0,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=1]": "minecraft:birch_sign[rotation=1,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=2]": "minecraft:birch_sign[rotation=2,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=3]": "minecraft:birch_sign[rotation=3,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=4]": "minecraft:birch_sign[rotation=4,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=5]": "minecraft:birch_sign[rotation=5,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=6]": "minecraft:birch_sign[rotation=6,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=7]": "minecraft:birch_sign[rotation=7,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=8]": "minecraft:birch_sign[rotation=8,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=9]": "minecraft:birch_sign[rotation=9,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=10]": "minecraft:birch_sign[rotation=10,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=11]": "minecraft:birch_sign[rotation=11,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=12]": "minecraft:birch_sign[rotation=12,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=13]": "minecraft:birch_sign[rotation=13,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=14]": "minecraft:birch_sign[rotation=14,waterlogged=false]", + "minecraft:birch_standing_sign[ground_sign_direction=15]": "minecraft:birch_sign[rotation=15,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=0]": "minecraft:acacia_sign[rotation=0,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=1]": "minecraft:acacia_sign[rotation=1,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=2]": "minecraft:acacia_sign[rotation=2,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=3]": "minecraft:acacia_sign[rotation=3,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=4]": "minecraft:acacia_sign[rotation=4,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=5]": "minecraft:acacia_sign[rotation=5,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=6]": "minecraft:acacia_sign[rotation=6,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=7]": "minecraft:acacia_sign[rotation=7,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=8]": "minecraft:acacia_sign[rotation=8,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=9]": "minecraft:acacia_sign[rotation=9,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=10]": "minecraft:acacia_sign[rotation=10,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=11]": "minecraft:acacia_sign[rotation=11,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=12]": "minecraft:acacia_sign[rotation=12,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=13]": "minecraft:acacia_sign[rotation=13,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=14]": "minecraft:acacia_sign[rotation=14,waterlogged=false]", + "minecraft:acacia_standing_sign[ground_sign_direction=15]": "minecraft:acacia_sign[rotation=15,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=0]": "minecraft:cherry_sign[rotation=0,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=1]": "minecraft:cherry_sign[rotation=1,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=2]": "minecraft:cherry_sign[rotation=2,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=3]": "minecraft:cherry_sign[rotation=3,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=4]": "minecraft:cherry_sign[rotation=4,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=5]": "minecraft:cherry_sign[rotation=5,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=6]": "minecraft:cherry_sign[rotation=6,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=7]": "minecraft:cherry_sign[rotation=7,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=8]": "minecraft:cherry_sign[rotation=8,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=9]": "minecraft:cherry_sign[rotation=9,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=10]": "minecraft:cherry_sign[rotation=10,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=11]": "minecraft:cherry_sign[rotation=11,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=12]": "minecraft:cherry_sign[rotation=12,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=13]": "minecraft:cherry_sign[rotation=13,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=14]": "minecraft:cherry_sign[rotation=14,waterlogged=false]", + "minecraft:cherry_standing_sign[ground_sign_direction=15]": "minecraft:cherry_sign[rotation=15,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=0]": "minecraft:jungle_sign[rotation=0,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=1]": "minecraft:jungle_sign[rotation=1,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=2]": "minecraft:jungle_sign[rotation=2,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=3]": "minecraft:jungle_sign[rotation=3,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=4]": "minecraft:jungle_sign[rotation=4,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=5]": "minecraft:jungle_sign[rotation=5,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=6]": "minecraft:jungle_sign[rotation=6,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=7]": "minecraft:jungle_sign[rotation=7,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=8]": "minecraft:jungle_sign[rotation=8,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=9]": "minecraft:jungle_sign[rotation=9,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=10]": "minecraft:jungle_sign[rotation=10,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=11]": "minecraft:jungle_sign[rotation=11,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=12]": "minecraft:jungle_sign[rotation=12,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=13]": "minecraft:jungle_sign[rotation=13,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=14]": "minecraft:jungle_sign[rotation=14,waterlogged=false]", + "minecraft:jungle_standing_sign[ground_sign_direction=15]": "minecraft:jungle_sign[rotation=15,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=0]": "minecraft:dark_oak_sign[rotation=0,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=1]": "minecraft:dark_oak_sign[rotation=1,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=2]": "minecraft:dark_oak_sign[rotation=2,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=3]": "minecraft:dark_oak_sign[rotation=3,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=4]": "minecraft:dark_oak_sign[rotation=4,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=5]": "minecraft:dark_oak_sign[rotation=5,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=6]": "minecraft:dark_oak_sign[rotation=6,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=7]": "minecraft:dark_oak_sign[rotation=7,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=8]": "minecraft:dark_oak_sign[rotation=8,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=9]": "minecraft:dark_oak_sign[rotation=9,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=10]": "minecraft:dark_oak_sign[rotation=10,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=11]": "minecraft:dark_oak_sign[rotation=11,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=12]": "minecraft:dark_oak_sign[rotation=12,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=13]": "minecraft:dark_oak_sign[rotation=13,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=14]": "minecraft:dark_oak_sign[rotation=14,waterlogged=false]", + "minecraft:darkoak_standing_sign[ground_sign_direction=15]": "minecraft:dark_oak_sign[rotation=15,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=0]": "minecraft:mangrove_sign[rotation=0,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=1]": "minecraft:mangrove_sign[rotation=1,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=2]": "minecraft:mangrove_sign[rotation=2,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=3]": "minecraft:mangrove_sign[rotation=3,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=4]": "minecraft:mangrove_sign[rotation=4,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=5]": "minecraft:mangrove_sign[rotation=5,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=6]": "minecraft:mangrove_sign[rotation=6,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=7]": "minecraft:mangrove_sign[rotation=7,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=8]": "minecraft:mangrove_sign[rotation=8,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=9]": "minecraft:mangrove_sign[rotation=9,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=10]": "minecraft:mangrove_sign[rotation=10,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=11]": "minecraft:mangrove_sign[rotation=11,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=12]": "minecraft:mangrove_sign[rotation=12,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=13]": "minecraft:mangrove_sign[rotation=13,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=14]": "minecraft:mangrove_sign[rotation=14,waterlogged=false]", + "minecraft:mangrove_standing_sign[ground_sign_direction=15]": "minecraft:mangrove_sign[rotation=15,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=0]": "minecraft:bamboo_sign[rotation=0,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=1]": "minecraft:bamboo_sign[rotation=1,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=2]": "minecraft:bamboo_sign[rotation=2,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=3]": "minecraft:bamboo_sign[rotation=3,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=4]": "minecraft:bamboo_sign[rotation=4,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=5]": "minecraft:bamboo_sign[rotation=5,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=6]": "minecraft:bamboo_sign[rotation=6,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=7]": "minecraft:bamboo_sign[rotation=7,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=8]": "minecraft:bamboo_sign[rotation=8,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=9]": "minecraft:bamboo_sign[rotation=9,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=10]": "minecraft:bamboo_sign[rotation=10,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=11]": "minecraft:bamboo_sign[rotation=11,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=12]": "minecraft:bamboo_sign[rotation=12,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=13]": "minecraft:bamboo_sign[rotation=13,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=14]": "minecraft:bamboo_sign[rotation=14,waterlogged=false]", + "minecraft:bamboo_standing_sign[ground_sign_direction=15]": "minecraft:bamboo_sign[rotation=15,waterlogged=false]", + "minecraft:wooden_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:wooden_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:wooden_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:wooden_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:wooden_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:wooden_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:wooden_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:wooden_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:wooden_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:wooden_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:wooden_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:wooden_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:wooden_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:wooden_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:wooden_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:wooden_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:wooden_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:wooden_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:wooden_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:wooden_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:wooden_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:wooden_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:wooden_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:wooden_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:wooden_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:wooden_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:wooden_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:wooden_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:wooden_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:wooden_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:wooden_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:wooden_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:ladder[facing_direction=2]": "minecraft:ladder[facing=north,waterlogged=false]", + "minecraft:ladder[facing_direction=3]": "minecraft:ladder[facing=south,waterlogged=false]", + "minecraft:ladder[facing_direction=4]": "minecraft:ladder[facing=west,waterlogged=false]", + "minecraft:ladder[facing_direction=5]": "minecraft:ladder[facing=east,waterlogged=false]", + "minecraft:rail[rail_direction=0]": "minecraft:rail[shape=north_south,waterlogged=false]", + "minecraft:rail[rail_direction=1]": "minecraft:rail[shape=east_west,waterlogged=false]", + "minecraft:rail[rail_direction=2]": "minecraft:rail[shape=ascending_east,waterlogged=false]", + "minecraft:rail[rail_direction=3]": "minecraft:rail[shape=ascending_west,waterlogged=false]", + "minecraft:rail[rail_direction=4]": "minecraft:rail[shape=ascending_north,waterlogged=false]", + "minecraft:rail[rail_direction=5]": "minecraft:rail[shape=ascending_south,waterlogged=false]", + "minecraft:rail[rail_direction=6]": "minecraft:rail[shape=south_east,waterlogged=false]", + "minecraft:rail[rail_direction=7]": "minecraft:rail[shape=south_west,waterlogged=false]", + "minecraft:rail[rail_direction=8]": "minecraft:rail[shape=north_west,waterlogged=false]", + "minecraft:rail[rail_direction=9]": "minecraft:rail[shape=north_east,waterlogged=false]", + "minecraft:stone_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:stone_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:stone_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:stone_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:stone_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:stone_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:stone_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:stone_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:wall_sign[facing_direction=2]": "minecraft:oak_wall_sign[facing=north,waterlogged=false]", + "minecraft:wall_sign[facing_direction=3]": "minecraft:oak_wall_sign[facing=south,waterlogged=false]", + "minecraft:wall_sign[facing_direction=4]": "minecraft:oak_wall_sign[facing=west,waterlogged=false]", + "minecraft:wall_sign[facing_direction=5]": "minecraft:oak_wall_sign[facing=east,waterlogged=false]", + "minecraft:spruce_wall_sign[facing_direction=2]": "minecraft:spruce_wall_sign[facing=north,waterlogged=false]", + "minecraft:spruce_wall_sign[facing_direction=3]": "minecraft:spruce_wall_sign[facing=south,waterlogged=false]", + "minecraft:spruce_wall_sign[facing_direction=4]": "minecraft:spruce_wall_sign[facing=west,waterlogged=false]", + "minecraft:spruce_wall_sign[facing_direction=5]": "minecraft:spruce_wall_sign[facing=east,waterlogged=false]", + "minecraft:birch_wall_sign[facing_direction=2]": "minecraft:birch_wall_sign[facing=north,waterlogged=false]", + "minecraft:birch_wall_sign[facing_direction=3]": "minecraft:birch_wall_sign[facing=south,waterlogged=false]", + "minecraft:birch_wall_sign[facing_direction=4]": "minecraft:birch_wall_sign[facing=west,waterlogged=false]", + "minecraft:birch_wall_sign[facing_direction=5]": "minecraft:birch_wall_sign[facing=east,waterlogged=false]", + "minecraft:acacia_wall_sign[facing_direction=2]": "minecraft:acacia_wall_sign[facing=north,waterlogged=false]", + "minecraft:acacia_wall_sign[facing_direction=3]": "minecraft:acacia_wall_sign[facing=south,waterlogged=false]", + "minecraft:acacia_wall_sign[facing_direction=4]": "minecraft:acacia_wall_sign[facing=west,waterlogged=false]", + "minecraft:acacia_wall_sign[facing_direction=5]": "minecraft:acacia_wall_sign[facing=east,waterlogged=false]", + "minecraft:cherry_wall_sign[facing_direction=2]": "minecraft:cherry_wall_sign[facing=north,waterlogged=false]", + "minecraft:cherry_wall_sign[facing_direction=3]": "minecraft:cherry_wall_sign[facing=south,waterlogged=false]", + "minecraft:cherry_wall_sign[facing_direction=4]": "minecraft:cherry_wall_sign[facing=west,waterlogged=false]", + "minecraft:cherry_wall_sign[facing_direction=5]": "minecraft:cherry_wall_sign[facing=east,waterlogged=false]", + "minecraft:jungle_wall_sign[facing_direction=2]": "minecraft:jungle_wall_sign[facing=north,waterlogged=false]", + "minecraft:jungle_wall_sign[facing_direction=3]": "minecraft:jungle_wall_sign[facing=south,waterlogged=false]", + "minecraft:jungle_wall_sign[facing_direction=4]": "minecraft:jungle_wall_sign[facing=west,waterlogged=false]", + "minecraft:jungle_wall_sign[facing_direction=5]": "minecraft:jungle_wall_sign[facing=east,waterlogged=false]", + "minecraft:darkoak_wall_sign[facing_direction=2]": "minecraft:dark_oak_wall_sign[facing=north,waterlogged=false]", + "minecraft:darkoak_wall_sign[facing_direction=3]": "minecraft:dark_oak_wall_sign[facing=south,waterlogged=false]", + "minecraft:darkoak_wall_sign[facing_direction=4]": "minecraft:dark_oak_wall_sign[facing=west,waterlogged=false]", + "minecraft:darkoak_wall_sign[facing_direction=5]": "minecraft:dark_oak_wall_sign[facing=east,waterlogged=false]", + "minecraft:mangrove_wall_sign[facing_direction=2]": "minecraft:mangrove_wall_sign[facing=north,waterlogged=false]", + "minecraft:mangrove_wall_sign[facing_direction=3]": "minecraft:mangrove_wall_sign[facing=south,waterlogged=false]", + "minecraft:mangrove_wall_sign[facing_direction=4]": "minecraft:mangrove_wall_sign[facing=west,waterlogged=false]", + "minecraft:mangrove_wall_sign[facing_direction=5]": "minecraft:mangrove_wall_sign[facing=east,waterlogged=false]", + "minecraft:bamboo_wall_sign[facing_direction=2]": "minecraft:bamboo_wall_sign[facing=north,waterlogged=false]", + "minecraft:bamboo_wall_sign[facing_direction=3]": "minecraft:bamboo_wall_sign[facing=south,waterlogged=false]", + "minecraft:bamboo_wall_sign[facing_direction=4]": "minecraft:bamboo_wall_sign[facing=west,waterlogged=false]", + "minecraft:bamboo_wall_sign[facing_direction=5]": "minecraft:bamboo_wall_sign[facing=east,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:oak_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:oak_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:spruce_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:spruce_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:birch_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:birch_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:acacia_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:acacia_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:cherry_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:cherry_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:jungle_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:jungle_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:dark_oak_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:crimson_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:crimson_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:warped_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:warped_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:mangrove_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:mangrove_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=0,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=1,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=2,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=3,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=4,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=5,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=6,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=7,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=8,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=9,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=10,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=11,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=12,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=13,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=14,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:bamboo_hanging_sign[attached=true,rotation=15,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=3,ground_sign_direction=0,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=0,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=1,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=1,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=2,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=2,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=3,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=3,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=4,ground_sign_direction=4,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=4,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=5,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=5,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=6,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=6,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=7,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=7,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=8,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=8,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=9,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=9,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=10,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=10,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=11,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=11,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=5,ground_sign_direction=12,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=12,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=13,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=13,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=14,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=14,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=0,facing_direction=2,ground_sign_direction=15,hanging=1]": "minecraft:bamboo_hanging_sign[attached=false,rotation=15,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:oak_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:oak_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:oak_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:oak_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:oak_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:spruce_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:spruce_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:spruce_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:spruce_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:spruce_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:birch_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:birch_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:birch_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:birch_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:birch_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:acacia_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:acacia_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:acacia_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:acacia_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:acacia_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:cherry_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:cherry_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:cherry_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:cherry_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:cherry_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:jungle_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:jungle_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:jungle_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:jungle_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:jungle_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:dark_oak_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:dark_oak_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:dark_oak_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:dark_oak_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:dark_oak_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:mangrove_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:mangrove_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:mangrove_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:mangrove_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:mangrove_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:crimson_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:crimson_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:crimson_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:crimson_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:crimson_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:warped_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:warped_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:warped_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:warped_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:warped_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=2,ground_sign_direction=8,hanging=0]": "minecraft:bamboo_wall_hanging_sign[facing=north,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=3,ground_sign_direction=0,hanging=0]": "minecraft:bamboo_wall_hanging_sign[facing=south,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=4,ground_sign_direction=4,hanging=0]": "minecraft:bamboo_wall_hanging_sign[facing=west,waterlogged=false]", + "minecraft:bamboo_hanging_sign[attached_bit=1,facing_direction=5,ground_sign_direction=12,hanging=0]": "minecraft:bamboo_wall_hanging_sign[facing=east,waterlogged=false]", + "minecraft:lever[lever_direction=up_north_south,open_bit=1]": "minecraft:lever[face=floor,facing=south,powered=false]", + "minecraft:lever[lever_direction=up_north_south,open_bit=0]": "minecraft:lever[face=floor,facing=south,powered=true]", + "minecraft:lever[lever_direction=up_east_west,open_bit=1]": "minecraft:lever[face=floor,facing=east,powered=false]", + "minecraft:lever[lever_direction=up_east_west,open_bit=0]": "minecraft:lever[face=floor,facing=east,powered=true]", + "minecraft:lever[lever_direction=north,open_bit=1]": "minecraft:lever[face=wall,facing=north,powered=true]", + "minecraft:lever[lever_direction=north,open_bit=0]": "minecraft:lever[face=wall,facing=north,powered=false]", + "minecraft:lever[lever_direction=south,open_bit=1]": "minecraft:lever[face=wall,facing=south,powered=true]", + "minecraft:lever[lever_direction=south,open_bit=0]": "minecraft:lever[face=wall,facing=south,powered=false]", + "minecraft:lever[lever_direction=west,open_bit=1]": "minecraft:lever[face=wall,facing=west,powered=true]", + "minecraft:lever[lever_direction=west,open_bit=0]": "minecraft:lever[face=wall,facing=west,powered=false]", + "minecraft:lever[lever_direction=east,open_bit=1]": "minecraft:lever[face=wall,facing=east,powered=true]", + "minecraft:lever[lever_direction=east,open_bit=0]": "minecraft:lever[face=wall,facing=east,powered=false]", + "minecraft:lever[lever_direction=down_north_south,open_bit=1]": "minecraft:lever[face=ceiling,facing=south,powered=false]", + "minecraft:lever[lever_direction=down_north_south,open_bit=0]": "minecraft:lever[face=ceiling,facing=south,powered=true]", + "minecraft:lever[lever_direction=down_east_west,open_bit=1]": "minecraft:lever[face=ceiling,facing=east,powered=false]", + "minecraft:lever[lever_direction=down_east_west,open_bit=0]": "minecraft:lever[face=ceiling,facing=east,powered=true]", + "minecraft:stone_pressure_plate[redstone_signal=15]": "minecraft:stone_pressure_plate[powered=true]", + "minecraft:stone_pressure_plate[redstone_signal=0]": "minecraft:stone_pressure_plate[powered=false]", + "minecraft:iron_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:iron_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:iron_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:iron_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:iron_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:iron_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:iron_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:iron_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:iron_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:iron_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:iron_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:iron_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:iron_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:iron_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:iron_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:iron_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:iron_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:iron_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:iron_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:iron_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:iron_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:iron_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:iron_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:iron_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:iron_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:iron_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:iron_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:iron_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:iron_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:iron_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:iron_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:iron_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:wooden_pressure_plate[redstone_signal=15]": "minecraft:oak_pressure_plate[powered=true]", + "minecraft:wooden_pressure_plate[redstone_signal=0]": "minecraft:oak_pressure_plate[powered=false]", + "minecraft:spruce_pressure_plate[redstone_signal=15]": "minecraft:spruce_pressure_plate[powered=true]", + "minecraft:spruce_pressure_plate[redstone_signal=0]": "minecraft:spruce_pressure_plate[powered=false]", + "minecraft:birch_pressure_plate[redstone_signal=15]": "minecraft:birch_pressure_plate[powered=true]", + "minecraft:birch_pressure_plate[redstone_signal=0]": "minecraft:birch_pressure_plate[powered=false]", + "minecraft:jungle_pressure_plate[redstone_signal=15]": "minecraft:jungle_pressure_plate[powered=true]", + "minecraft:jungle_pressure_plate[redstone_signal=0]": "minecraft:jungle_pressure_plate[powered=false]", + "minecraft:acacia_pressure_plate[redstone_signal=15]": "minecraft:acacia_pressure_plate[powered=true]", + "minecraft:acacia_pressure_plate[redstone_signal=0]": "minecraft:acacia_pressure_plate[powered=false]", + "minecraft:cherry_pressure_plate[redstone_signal=15]": "minecraft:cherry_pressure_plate[powered=true]", + "minecraft:cherry_pressure_plate[redstone_signal=0]": "minecraft:cherry_pressure_plate[powered=false]", + "minecraft:dark_oak_pressure_plate[redstone_signal=15]": "minecraft:dark_oak_pressure_plate[powered=true]", + "minecraft:dark_oak_pressure_plate[redstone_signal=0]": "minecraft:dark_oak_pressure_plate[powered=false]", + "minecraft:mangrove_pressure_plate[redstone_signal=15]": "minecraft:mangrove_pressure_plate[powered=true]", + "minecraft:mangrove_pressure_plate[redstone_signal=0]": "minecraft:mangrove_pressure_plate[powered=false]", + "minecraft:bamboo_pressure_plate[redstone_signal=15]": "minecraft:bamboo_pressure_plate[powered=true]", + "minecraft:bamboo_pressure_plate[redstone_signal=0]": "minecraft:bamboo_pressure_plate[powered=false]", + "minecraft:lit_redstone_ore[]": "minecraft:redstone_ore[lit=true]", + "minecraft:redstone_ore[]": "minecraft:redstone_ore[lit=false]", + "minecraft:lit_deepslate_redstone_ore[]": "minecraft:deepslate_redstone_ore[lit=true]", + "minecraft:deepslate_redstone_ore[]": "minecraft:deepslate_redstone_ore[lit=false]", + "minecraft:redstone_torch[torch_facing_direction=top]": "minecraft:redstone_torch[lit=true]", + "minecraft:unlit_redstone_torch[torch_facing_direction=top]": "minecraft:redstone_torch[lit=false]", + "minecraft:redstone_torch[torch_facing_direction=south]": "minecraft:redstone_wall_torch[facing=north,lit=true]", + "minecraft:unlit_redstone_torch[torch_facing_direction=south]": "minecraft:redstone_wall_torch[facing=north,lit=false]", + "minecraft:redstone_torch[torch_facing_direction=north]": "minecraft:redstone_wall_torch[facing=south,lit=true]", + "minecraft:unlit_redstone_torch[torch_facing_direction=north]": "minecraft:redstone_wall_torch[facing=south,lit=false]", + "minecraft:redstone_torch[torch_facing_direction=east]": "minecraft:redstone_wall_torch[facing=west,lit=true]", + "minecraft:unlit_redstone_torch[torch_facing_direction=east]": "minecraft:redstone_wall_torch[facing=west,lit=false]", + "minecraft:redstone_torch[torch_facing_direction=west]": "minecraft:redstone_wall_torch[facing=east,lit=true]", + "minecraft:unlit_redstone_torch[torch_facing_direction=west]": "minecraft:redstone_wall_torch[facing=east,lit=false]", + "minecraft:stone_button[button_pressed_bit=1,facing_direction=1]": "minecraft:stone_button[face=floor,facing=east,powered=true]", + "minecraft:stone_button[button_pressed_bit=0,facing_direction=1]": "minecraft:stone_button[face=floor,facing=east,powered=false]", + "minecraft:stone_button[button_pressed_bit=1,facing_direction=2]": "minecraft:stone_button[face=wall,facing=north,powered=true]", + "minecraft:stone_button[button_pressed_bit=0,facing_direction=2]": "minecraft:stone_button[face=wall,facing=north,powered=false]", + "minecraft:stone_button[button_pressed_bit=1,facing_direction=3]": "minecraft:stone_button[face=wall,facing=south,powered=true]", + "minecraft:stone_button[button_pressed_bit=0,facing_direction=3]": "minecraft:stone_button[face=wall,facing=south,powered=false]", + "minecraft:stone_button[button_pressed_bit=1,facing_direction=4]": "minecraft:stone_button[face=wall,facing=west,powered=true]", + "minecraft:stone_button[button_pressed_bit=0,facing_direction=4]": "minecraft:stone_button[face=wall,facing=west,powered=false]", + "minecraft:stone_button[button_pressed_bit=1,facing_direction=5]": "minecraft:stone_button[face=wall,facing=east,powered=true]", + "minecraft:stone_button[button_pressed_bit=0,facing_direction=5]": "minecraft:stone_button[face=wall,facing=east,powered=false]", + "minecraft:stone_button[button_pressed_bit=1,facing_direction=0]": "minecraft:stone_button[face=ceiling,facing=east,powered=true]", + "minecraft:stone_button[button_pressed_bit=0,facing_direction=0]": "minecraft:stone_button[face=ceiling,facing=east,powered=false]", + "minecraft:snow_layer[covered_bit=0,height=0]": "minecraft:snow[layers=1]", + "minecraft:snow_layer[covered_bit=0,height=1]": "minecraft:snow[layers=2]", + "minecraft:snow_layer[covered_bit=0,height=2]": "minecraft:snow[layers=3]", + "minecraft:snow_layer[covered_bit=0,height=3]": "minecraft:snow[layers=4]", + "minecraft:snow_layer[covered_bit=0,height=4]": "minecraft:snow[layers=5]", + "minecraft:snow_layer[covered_bit=0,height=5]": "minecraft:snow[layers=6]", + "minecraft:snow_layer[covered_bit=0,height=6]": "minecraft:snow[layers=7]", + "minecraft:snow_layer[covered_bit=0,height=7]": "minecraft:snow[layers=8]", + "minecraft:ice[]": "minecraft:ice[]", + "minecraft:snow[]": "minecraft:snow_block[]", + "minecraft:cactus[age=0]": "minecraft:cactus[age=0]", + "minecraft:cactus[age=1]": "minecraft:cactus[age=1]", + "minecraft:cactus[age=2]": "minecraft:cactus[age=2]", + "minecraft:cactus[age=3]": "minecraft:cactus[age=3]", + "minecraft:cactus[age=4]": "minecraft:cactus[age=4]", + "minecraft:cactus[age=5]": "minecraft:cactus[age=5]", + "minecraft:cactus[age=6]": "minecraft:cactus[age=6]", + "minecraft:cactus[age=7]": "minecraft:cactus[age=7]", + "minecraft:cactus[age=8]": "minecraft:cactus[age=8]", + "minecraft:cactus[age=9]": "minecraft:cactus[age=9]", + "minecraft:cactus[age=10]": "minecraft:cactus[age=10]", + "minecraft:cactus[age=11]": "minecraft:cactus[age=11]", + "minecraft:cactus[age=12]": "minecraft:cactus[age=12]", + "minecraft:cactus[age=13]": "minecraft:cactus[age=13]", + "minecraft:cactus[age=14]": "minecraft:cactus[age=14]", + "minecraft:cactus[age=15]": "minecraft:cactus[age=15]", + "minecraft:clay[]": "minecraft:clay[]", + "minecraft:reeds[age=0]": "minecraft:sugar_cane[age=0]", + "minecraft:reeds[age=1]": "minecraft:sugar_cane[age=1]", + "minecraft:reeds[age=2]": "minecraft:sugar_cane[age=2]", + "minecraft:reeds[age=3]": "minecraft:sugar_cane[age=3]", + "minecraft:reeds[age=4]": "minecraft:sugar_cane[age=4]", + "minecraft:reeds[age=5]": "minecraft:sugar_cane[age=5]", + "minecraft:reeds[age=6]": "minecraft:sugar_cane[age=6]", + "minecraft:reeds[age=7]": "minecraft:sugar_cane[age=7]", + "minecraft:reeds[age=8]": "minecraft:sugar_cane[age=8]", + "minecraft:reeds[age=9]": "minecraft:sugar_cane[age=9]", + "minecraft:reeds[age=10]": "minecraft:sugar_cane[age=10]", + "minecraft:reeds[age=11]": "minecraft:sugar_cane[age=11]", + "minecraft:reeds[age=12]": "minecraft:sugar_cane[age=12]", + "minecraft:reeds[age=13]": "minecraft:sugar_cane[age=13]", + "minecraft:reeds[age=14]": "minecraft:sugar_cane[age=14]", + "minecraft:reeds[age=15]": "minecraft:sugar_cane[age=15]", + "minecraft:jukebox[]": "minecraft:jukebox[has_record=false]", + "minecraft:oak_fence[]": "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:netherrack[]": "minecraft:netherrack[]", + "minecraft:soul_sand[]": "minecraft:soul_sand[]", + "minecraft:soul_soil[]": "minecraft:soul_soil[]", + "minecraft:basalt[pillar_axis=x]": "minecraft:basalt[axis=x]", + "minecraft:basalt[pillar_axis=y]": "minecraft:basalt[axis=y]", + "minecraft:basalt[pillar_axis=z]": "minecraft:basalt[axis=z]", + "minecraft:polished_basalt[pillar_axis=x]": "minecraft:polished_basalt[axis=x]", + "minecraft:polished_basalt[pillar_axis=y]": "minecraft:polished_basalt[axis=y]", + "minecraft:polished_basalt[pillar_axis=z]": "minecraft:polished_basalt[axis=z]", + "minecraft:soul_torch[torch_facing_direction=top]": "minecraft:soul_torch[]", + "minecraft:soul_torch[torch_facing_direction=south]": "minecraft:soul_wall_torch[facing=north]", + "minecraft:soul_torch[torch_facing_direction=north]": "minecraft:soul_wall_torch[facing=south]", + "minecraft:soul_torch[torch_facing_direction=east]": "minecraft:soul_wall_torch[facing=west]", + "minecraft:soul_torch[torch_facing_direction=west]": "minecraft:soul_wall_torch[facing=east]", + "minecraft:glowstone[]": "minecraft:glowstone[]", + "minecraft:portal[portal_axis=x]": "minecraft:nether_portal[axis=x]", + "minecraft:portal[portal_axis=z]": "minecraft:nether_portal[axis=z]", + "minecraft:carved_pumpkin[minecraft:cardinal_direction=north]": "minecraft:carved_pumpkin[facing=north]", + "minecraft:carved_pumpkin[minecraft:cardinal_direction=south]": "minecraft:carved_pumpkin[facing=south]", + "minecraft:carved_pumpkin[minecraft:cardinal_direction=west]": "minecraft:carved_pumpkin[facing=west]", + "minecraft:carved_pumpkin[minecraft:cardinal_direction=east]": "minecraft:carved_pumpkin[facing=east]", + "minecraft:lit_pumpkin[minecraft:cardinal_direction=north]": "minecraft:jack_o_lantern[facing=north]", + "minecraft:lit_pumpkin[minecraft:cardinal_direction=south]": "minecraft:jack_o_lantern[facing=south]", + "minecraft:lit_pumpkin[minecraft:cardinal_direction=west]": "minecraft:jack_o_lantern[facing=west]", + "minecraft:lit_pumpkin[minecraft:cardinal_direction=east]": "minecraft:jack_o_lantern[facing=east]", + "minecraft:cake[bite_counter=0]": "minecraft:cake[bites=0]", + "minecraft:cake[bite_counter=1]": "minecraft:cake[bites=1]", + "minecraft:cake[bite_counter=2]": "minecraft:cake[bites=2]", + "minecraft:cake[bite_counter=3]": "minecraft:cake[bites=3]", + "minecraft:cake[bite_counter=4]": "minecraft:cake[bites=4]", + "minecraft:cake[bite_counter=5]": "minecraft:cake[bites=5]", + "minecraft:cake[bite_counter=6]": "minecraft:cake[bites=6]", + "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]": "minecraft:repeater[delay=1,facing=north,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]": "minecraft:repeater[delay=1,facing=north,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]": "minecraft:repeater[delay=1,facing=south,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]": "minecraft:repeater[delay=1,facing=south,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]": "minecraft:repeater[delay=1,facing=west,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]": "minecraft:repeater[delay=1,facing=west,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]": "minecraft:repeater[delay=1,facing=east,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]": "minecraft:repeater[delay=1,facing=east,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]": "minecraft:repeater[delay=2,facing=north,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]": "minecraft:repeater[delay=2,facing=north,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]": "minecraft:repeater[delay=2,facing=south,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]": "minecraft:repeater[delay=2,facing=south,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]": "minecraft:repeater[delay=2,facing=west,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]": "minecraft:repeater[delay=2,facing=west,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]": "minecraft:repeater[delay=2,facing=east,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]": "minecraft:repeater[delay=2,facing=east,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]": "minecraft:repeater[delay=3,facing=north,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]": "minecraft:repeater[delay=3,facing=north,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]": "minecraft:repeater[delay=3,facing=south,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]": "minecraft:repeater[delay=3,facing=south,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]": "minecraft:repeater[delay=3,facing=west,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]": "minecraft:repeater[delay=3,facing=west,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]": "minecraft:repeater[delay=3,facing=east,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]": "minecraft:repeater[delay=3,facing=east,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]": "minecraft:repeater[delay=4,facing=north,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]": "minecraft:repeater[delay=4,facing=north,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]": "minecraft:repeater[delay=4,facing=south,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]": "minecraft:repeater[delay=4,facing=south,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]": "minecraft:repeater[delay=4,facing=west,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]": "minecraft:repeater[delay=4,facing=west,locked=false,powered=false]", + "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]": "minecraft:repeater[delay=4,facing=east,locked=false,powered=true]", + "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]": "minecraft:repeater[delay=4,facing=east,locked=false,powered=false]", + "minecraft:white_stained_glass[]": "minecraft:white_stained_glass[]", + "minecraft:orange_stained_glass[]": "minecraft:orange_stained_glass[]", + "minecraft:magenta_stained_glass[]": "minecraft:magenta_stained_glass[]", + "minecraft:light_blue_stained_glass[]": "minecraft:light_blue_stained_glass[]", + "minecraft:yellow_stained_glass[]": "minecraft:yellow_stained_glass[]", + "minecraft:lime_stained_glass[]": "minecraft:lime_stained_glass[]", + "minecraft:pink_stained_glass[]": "minecraft:pink_stained_glass[]", + "minecraft:gray_stained_glass[]": "minecraft:gray_stained_glass[]", + "minecraft:light_gray_stained_glass[]": "minecraft:light_gray_stained_glass[]", + "minecraft:cyan_stained_glass[]": "minecraft:cyan_stained_glass[]", + "minecraft:purple_stained_glass[]": "minecraft:purple_stained_glass[]", + "minecraft:blue_stained_glass[]": "minecraft:blue_stained_glass[]", + "minecraft:brown_stained_glass[]": "minecraft:brown_stained_glass[]", + "minecraft:green_stained_glass[]": "minecraft:green_stained_glass[]", + "minecraft:red_stained_glass[]": "minecraft:red_stained_glass[]", + "minecraft:black_stained_glass[]": "minecraft:black_stained_glass[]", + "minecraft:trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:spruce_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:birch_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:jungle_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:acacia_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:cherry_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:dark_oak_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:mangrove_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:bamboo_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:stonebrick[stone_brick_type=default]": "minecraft:stone_bricks[]", + "minecraft:stonebrick[stone_brick_type=mossy]": "minecraft:mossy_stone_bricks[]", + "minecraft:stonebrick[stone_brick_type=cracked]": "minecraft:cracked_stone_bricks[]", + "minecraft:stonebrick[stone_brick_type=chiseled]": "minecraft:chiseled_stone_bricks[]", + "minecraft:packed_mud[]": "minecraft:packed_mud[]", + "minecraft:mud_bricks[]": "minecraft:mud_bricks[]", + "minecraft:monster_egg[monster_egg_stone_type=stone]": "minecraft:infested_stone[]", + "minecraft:monster_egg[monster_egg_stone_type=cobblestone]": "minecraft:infested_cobblestone[]", + "minecraft:monster_egg[monster_egg_stone_type=stone_brick]": "minecraft:infested_stone_bricks[]", + "minecraft:monster_egg[monster_egg_stone_type=mossy_stone_brick]": "minecraft:infested_mossy_stone_bricks[]", + "minecraft:monster_egg[monster_egg_stone_type=cracked_stone_brick]": "minecraft:infested_cracked_stone_bricks[]", + "minecraft:monster_egg[monster_egg_stone_type=chiseled_stone_brick]": "minecraft:infested_chiseled_stone_bricks[]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=14]": "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=3]": "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=9]": "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=6]": "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=1]": "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=2]": "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=7]": "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=8]": "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=4]": "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=5]": "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]", + "minecraft:brown_mushroom_block[huge_mushroom_bits=0]": "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]", + "minecraft:red_mushroom_block[huge_mushroom_bits=14]": "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]", + "minecraft:red_mushroom_block[huge_mushroom_bits=3]": "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]", + "minecraft:red_mushroom_block[huge_mushroom_bits=9]": "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]", + "minecraft:red_mushroom_block[huge_mushroom_bits=6]": "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]", + "minecraft:red_mushroom_block[huge_mushroom_bits=1]": "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]", + "minecraft:red_mushroom_block[huge_mushroom_bits=2]": "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]", + "minecraft:red_mushroom_block[huge_mushroom_bits=7]": "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]", + "minecraft:red_mushroom_block[huge_mushroom_bits=8]": "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]", + "minecraft:red_mushroom_block[huge_mushroom_bits=4]": "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]", + "minecraft:red_mushroom_block[huge_mushroom_bits=5]": "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]", + "minecraft:red_mushroom_block[huge_mushroom_bits=0]": "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false]", + "minecraft:red_mushroom_block[huge_mushroom_bits=15]": "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=true]", + "minecraft:iron_bars[]": "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:chain[pillar_axis=x]": "minecraft:chain[axis=x,waterlogged=false]", + "minecraft:chain[pillar_axis=y]": "minecraft:chain[axis=y,waterlogged=false]", + "minecraft:chain[pillar_axis=z]": "minecraft:chain[axis=z,waterlogged=false]", + "minecraft:glass_pane[]": "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:pumpkin[minecraft:cardinal_direction=north]": "minecraft:pumpkin[]", + "minecraft:melon_block[]": "minecraft:melon[]", + "minecraft:pumpkin_stem[facing_direction=2,growth=7]": "minecraft:attached_pumpkin_stem[facing=north]", + "minecraft:pumpkin_stem[facing_direction=3,growth=7]": "minecraft:attached_pumpkin_stem[facing=south]", + "minecraft:pumpkin_stem[facing_direction=4,growth=7]": "minecraft:attached_pumpkin_stem[facing=west]", + "minecraft:pumpkin_stem[facing_direction=5,growth=7]": "minecraft:attached_pumpkin_stem[facing=east]", + "minecraft:melon_stem[facing_direction=2,growth=7]": "minecraft:attached_melon_stem[facing=north]", + "minecraft:melon_stem[facing_direction=3,growth=7]": "minecraft:attached_melon_stem[facing=south]", + "minecraft:melon_stem[facing_direction=4,growth=7]": "minecraft:attached_melon_stem[facing=west]", + "minecraft:melon_stem[facing_direction=5,growth=7]": "minecraft:attached_melon_stem[facing=east]", + "minecraft:pumpkin_stem[facing_direction=0,growth=0]": "minecraft:pumpkin_stem[age=0]", + "minecraft:pumpkin_stem[facing_direction=0,growth=1]": "minecraft:pumpkin_stem[age=1]", + "minecraft:pumpkin_stem[facing_direction=0,growth=2]": "minecraft:pumpkin_stem[age=2]", + "minecraft:pumpkin_stem[facing_direction=0,growth=3]": "minecraft:pumpkin_stem[age=3]", + "minecraft:pumpkin_stem[facing_direction=0,growth=4]": "minecraft:pumpkin_stem[age=4]", + "minecraft:pumpkin_stem[facing_direction=0,growth=5]": "minecraft:pumpkin_stem[age=5]", + "minecraft:pumpkin_stem[facing_direction=0,growth=6]": "minecraft:pumpkin_stem[age=6]", + "minecraft:pumpkin_stem[facing_direction=0,growth=7]": "minecraft:pumpkin_stem[age=7]", + "minecraft:melon_stem[facing_direction=0,growth=0]": "minecraft:melon_stem[age=0]", + "minecraft:melon_stem[facing_direction=0,growth=1]": "minecraft:melon_stem[age=1]", + "minecraft:melon_stem[facing_direction=0,growth=2]": "minecraft:melon_stem[age=2]", + "minecraft:melon_stem[facing_direction=0,growth=3]": "minecraft:melon_stem[age=3]", + "minecraft:melon_stem[facing_direction=0,growth=4]": "minecraft:melon_stem[age=4]", + "minecraft:melon_stem[facing_direction=0,growth=5]": "minecraft:melon_stem[age=5]", + "minecraft:melon_stem[facing_direction=0,growth=6]": "minecraft:melon_stem[age=6]", + "minecraft:melon_stem[facing_direction=0,growth=7]": "minecraft:melon_stem[age=7]", + "minecraft:vine[vine_direction_bits=15]": "minecraft:vine[east=true,north=true,south=true,up=false,west=true]", + "minecraft:vine[vine_direction_bits=13]": "minecraft:vine[east=true,north=true,south=true,up=false,west=false]", + "minecraft:vine[vine_direction_bits=14]": "minecraft:vine[east=true,north=true,south=false,up=false,west=true]", + "minecraft:vine[vine_direction_bits=12]": "minecraft:vine[east=true,north=true,south=false,up=false,west=false]", + "minecraft:vine[vine_direction_bits=11]": "minecraft:vine[east=true,north=false,south=true,up=false,west=true]", + "minecraft:vine[vine_direction_bits=9]": "minecraft:vine[east=true,north=false,south=true,up=false,west=false]", + "minecraft:vine[vine_direction_bits=10]": "minecraft:vine[east=true,north=false,south=false,up=false,west=true]", + "minecraft:vine[vine_direction_bits=8]": "minecraft:vine[east=true,north=false,south=false,up=false,west=false]", + "minecraft:vine[vine_direction_bits=7]": "minecraft:vine[east=false,north=true,south=true,up=false,west=true]", + "minecraft:vine[vine_direction_bits=5]": "minecraft:vine[east=false,north=true,south=true,up=false,west=false]", + "minecraft:vine[vine_direction_bits=6]": "minecraft:vine[east=false,north=true,south=false,up=false,west=true]", + "minecraft:vine[vine_direction_bits=4]": "minecraft:vine[east=false,north=true,south=false,up=false,west=false]", + "minecraft:vine[vine_direction_bits=3]": "minecraft:vine[east=false,north=false,south=true,up=false,west=true]", + "minecraft:vine[vine_direction_bits=1]": "minecraft:vine[east=false,north=false,south=true,up=false,west=false]", + "minecraft:vine[vine_direction_bits=2]": "minecraft:vine[east=false,north=false,south=false,up=false,west=true]", + "minecraft:vine[vine_direction_bits=0]": "minecraft:vine[east=false,north=false,south=false,up=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=63]": "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=55]": "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=61]": "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=53]": "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=59]": "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=51]": "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=57]": "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=49]": "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=47]": "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=39]": "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=45]": "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=37]": "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=43]": "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=35]": "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=41]": "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=33]": "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=31]": "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=23]": "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=29]": "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=21]": "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=27]": "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=19]": "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=25]": "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=17]": "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=15]": "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=7]": "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=13]": "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=5]": "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=11]": "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=3]": "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=9]": "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=1]": "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=62]": "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=54]": "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=60]": "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=52]": "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=58]": "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=50]": "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=56]": "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=48]": "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=46]": "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=38]": "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=44]": "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=36]": "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=42]": "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=34]": "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=40]": "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=32]": "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=30]": "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=22]": "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=28]": "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=20]": "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=26]": "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=18]": "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=24]": "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=16]": "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=14]": "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=6]": "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=12]": "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=4]": "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=10]": "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=2]": "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]", + "minecraft:glow_lichen[multi_face_direction_bits=8]": "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true]", + "minecraft:glow_lichen[multi_face_direction_bits=0]": "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]", + "minecraft:fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:stone_brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:stone_brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:stone_brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:stone_brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:stone_brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:stone_brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:stone_brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:stone_brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mud_brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mud_brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mud_brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mud_brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mud_brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mud_brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mud_brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mud_brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mycelium[]": "minecraft:mycelium[snowy=false]", + "minecraft:waterlily[]": "minecraft:lily_pad[]", + "minecraft:nether_brick[]": "minecraft:nether_bricks[]", + "minecraft:nether_brick_fence[]": "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:nether_brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:nether_brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:nether_brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:nether_brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:nether_brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:nether_brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:nether_brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:nether_brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:nether_wart[age=0]": "minecraft:nether_wart[age=0]", + "minecraft:nether_wart[age=1]": "minecraft:nether_wart[age=1]", + "minecraft:nether_wart[age=2]": "minecraft:nether_wart[age=2]", + "minecraft:nether_wart[age=3]": "minecraft:nether_wart[age=3]", + "minecraft:enchanting_table[]": "minecraft:enchanting_table[]", + "minecraft:brewing_stand[brewing_stand_slot_a_bit=1,brewing_stand_slot_b_bit=1,brewing_stand_slot_c_bit=1]": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]", + "minecraft:brewing_stand[brewing_stand_slot_a_bit=1,brewing_stand_slot_b_bit=1,brewing_stand_slot_c_bit=0]": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]", + "minecraft:brewing_stand[brewing_stand_slot_a_bit=1,brewing_stand_slot_b_bit=0,brewing_stand_slot_c_bit=1]": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]", + "minecraft:brewing_stand[brewing_stand_slot_a_bit=1,brewing_stand_slot_b_bit=0,brewing_stand_slot_c_bit=0]": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]", + "minecraft:brewing_stand[brewing_stand_slot_a_bit=0,brewing_stand_slot_b_bit=1,brewing_stand_slot_c_bit=1]": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]", + "minecraft:brewing_stand[brewing_stand_slot_a_bit=0,brewing_stand_slot_b_bit=1,brewing_stand_slot_c_bit=0]": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]", + "minecraft:brewing_stand[brewing_stand_slot_a_bit=0,brewing_stand_slot_b_bit=0,brewing_stand_slot_c_bit=1]": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]", + "minecraft:brewing_stand[brewing_stand_slot_a_bit=0,brewing_stand_slot_b_bit=0,brewing_stand_slot_c_bit=0]": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]", + "minecraft:cauldron[cauldron_liquid=water,fill_level=0]": "minecraft:cauldron[]", + "minecraft:cauldron[cauldron_liquid=water,fill_level=3]": "minecraft:water_cauldron[level=1]", + "minecraft:cauldron[cauldron_liquid=water,fill_level=4]": "minecraft:water_cauldron[level=2]", + "minecraft:cauldron[cauldron_liquid=water,fill_level=6]": "minecraft:water_cauldron[level=3]", + "minecraft:cauldron[cauldron_liquid=lava,fill_level=6]": "minecraft:lava_cauldron[]", + "minecraft:cauldron[cauldron_liquid=powder_snow,fill_level=3]": "minecraft:powder_snow_cauldron[level=1]", + "minecraft:cauldron[cauldron_liquid=powder_snow,fill_level=4]": "minecraft:powder_snow_cauldron[level=2]", + "minecraft:cauldron[cauldron_liquid=powder_snow,fill_level=6]": "minecraft:powder_snow_cauldron[level=3]", + "minecraft:end_portal[]": "minecraft:end_portal[]", + "minecraft:end_portal_frame[end_portal_eye_bit=1,minecraft:cardinal_direction=north]": "minecraft:end_portal_frame[eye=true,facing=north]", + "minecraft:end_portal_frame[end_portal_eye_bit=1,minecraft:cardinal_direction=south]": "minecraft:end_portal_frame[eye=true,facing=south]", + "minecraft:end_portal_frame[end_portal_eye_bit=1,minecraft:cardinal_direction=west]": "minecraft:end_portal_frame[eye=true,facing=west]", + "minecraft:end_portal_frame[end_portal_eye_bit=1,minecraft:cardinal_direction=east]": "minecraft:end_portal_frame[eye=true,facing=east]", + "minecraft:end_portal_frame[end_portal_eye_bit=0,minecraft:cardinal_direction=north]": "minecraft:end_portal_frame[eye=false,facing=north]", + "minecraft:end_portal_frame[end_portal_eye_bit=0,minecraft:cardinal_direction=south]": "minecraft:end_portal_frame[eye=false,facing=south]", + "minecraft:end_portal_frame[end_portal_eye_bit=0,minecraft:cardinal_direction=west]": "minecraft:end_portal_frame[eye=false,facing=west]", + "minecraft:end_portal_frame[end_portal_eye_bit=0,minecraft:cardinal_direction=east]": "minecraft:end_portal_frame[eye=false,facing=east]", + "minecraft:end_stone[]": "minecraft:end_stone[]", + "minecraft:dragon_egg[]": "minecraft:dragon_egg[]", + "minecraft:lit_redstone_lamp[]": "minecraft:redstone_lamp[lit=true]", + "minecraft:redstone_lamp[]": "minecraft:redstone_lamp[lit=false]", + "minecraft:cocoa[age=0,direction=2]": "minecraft:cocoa[age=0,facing=north]", + "minecraft:cocoa[age=0,direction=0]": "minecraft:cocoa[age=0,facing=south]", + "minecraft:cocoa[age=0,direction=1]": "minecraft:cocoa[age=0,facing=west]", + "minecraft:cocoa[age=0,direction=3]": "minecraft:cocoa[age=0,facing=east]", + "minecraft:cocoa[age=1,direction=2]": "minecraft:cocoa[age=1,facing=north]", + "minecraft:cocoa[age=1,direction=0]": "minecraft:cocoa[age=1,facing=south]", + "minecraft:cocoa[age=1,direction=1]": "minecraft:cocoa[age=1,facing=west]", + "minecraft:cocoa[age=1,direction=3]": "minecraft:cocoa[age=1,facing=east]", + "minecraft:cocoa[age=2,direction=2]": "minecraft:cocoa[age=2,facing=north]", + "minecraft:cocoa[age=2,direction=0]": "minecraft:cocoa[age=2,facing=south]", + "minecraft:cocoa[age=2,direction=1]": "minecraft:cocoa[age=2,facing=west]", + "minecraft:cocoa[age=2,direction=3]": "minecraft:cocoa[age=2,facing=east]", + "minecraft:sandstone_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:sandstone_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:sandstone_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:sandstone_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:sandstone_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:sandstone_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:sandstone_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:sandstone_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:emerald_ore[]": "minecraft:emerald_ore[]", + "minecraft:deepslate_emerald_ore[]": "minecraft:deepslate_emerald_ore[]", + "minecraft:ender_chest[minecraft:cardinal_direction=north]": "minecraft:ender_chest[facing=north,waterlogged=false]", + "minecraft:ender_chest[minecraft:cardinal_direction=south]": "minecraft:ender_chest[facing=south,waterlogged=false]", + "minecraft:ender_chest[minecraft:cardinal_direction=west]": "minecraft:ender_chest[facing=west,waterlogged=false]", + "minecraft:ender_chest[minecraft:cardinal_direction=east]": "minecraft:ender_chest[facing=east,waterlogged=false]", + "minecraft:tripwire_hook[attached_bit=1,direction=2,powered_bit=1]": "minecraft:tripwire_hook[attached=true,facing=north,powered=true]", + "minecraft:tripwire_hook[attached_bit=1,direction=2,powered_bit=0]": "minecraft:tripwire_hook[attached=true,facing=north,powered=false]", + "minecraft:tripwire_hook[attached_bit=1,direction=0,powered_bit=1]": "minecraft:tripwire_hook[attached=true,facing=south,powered=true]", + "minecraft:tripwire_hook[attached_bit=1,direction=0,powered_bit=0]": "minecraft:tripwire_hook[attached=true,facing=south,powered=false]", + "minecraft:tripwire_hook[attached_bit=1,direction=1,powered_bit=1]": "minecraft:tripwire_hook[attached=true,facing=west,powered=true]", + "minecraft:tripwire_hook[attached_bit=1,direction=1,powered_bit=0]": "minecraft:tripwire_hook[attached=true,facing=west,powered=false]", + "minecraft:tripwire_hook[attached_bit=1,direction=3,powered_bit=1]": "minecraft:tripwire_hook[attached=true,facing=east,powered=true]", + "minecraft:tripwire_hook[attached_bit=1,direction=3,powered_bit=0]": "minecraft:tripwire_hook[attached=true,facing=east,powered=false]", + "minecraft:tripwire_hook[attached_bit=0,direction=2,powered_bit=1]": "minecraft:tripwire_hook[attached=false,facing=north,powered=true]", + "minecraft:tripwire_hook[attached_bit=0,direction=2,powered_bit=0]": "minecraft:tripwire_hook[attached=false,facing=north,powered=false]", + "minecraft:tripwire_hook[attached_bit=0,direction=0,powered_bit=1]": "minecraft:tripwire_hook[attached=false,facing=south,powered=true]", + "minecraft:tripwire_hook[attached_bit=0,direction=0,powered_bit=0]": "minecraft:tripwire_hook[attached=false,facing=south,powered=false]", + "minecraft:tripwire_hook[attached_bit=0,direction=1,powered_bit=1]": "minecraft:tripwire_hook[attached=false,facing=west,powered=true]", + "minecraft:tripwire_hook[attached_bit=0,direction=1,powered_bit=0]": "minecraft:tripwire_hook[attached=false,facing=west,powered=false]", + "minecraft:tripwire_hook[attached_bit=0,direction=3,powered_bit=1]": "minecraft:tripwire_hook[attached=false,facing=east,powered=true]", + "minecraft:tripwire_hook[attached_bit=0,direction=3,powered_bit=0]": "minecraft:tripwire_hook[attached=false,facing=east,powered=false]", + "minecraft:trip_wire[attached_bit=1,disarmed_bit=1,powered_bit=1,suspended_bit=1]": "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false]", + "minecraft:trip_wire[attached_bit=1,disarmed_bit=1,powered_bit=0,suspended_bit=1]": "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false]", + "minecraft:trip_wire[attached_bit=1,disarmed_bit=0,powered_bit=1,suspended_bit=1]": "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false]", + "minecraft:trip_wire[attached_bit=1,disarmed_bit=0,powered_bit=0,suspended_bit=1]": "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false]", + "minecraft:trip_wire[attached_bit=0,disarmed_bit=1,powered_bit=1,suspended_bit=1]": "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false]", + "minecraft:trip_wire[attached_bit=0,disarmed_bit=1,powered_bit=0,suspended_bit=1]": "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false]", + "minecraft:trip_wire[attached_bit=0,disarmed_bit=0,powered_bit=1,suspended_bit=1]": "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false]", + "minecraft:trip_wire[attached_bit=0,disarmed_bit=0,powered_bit=0,suspended_bit=1]": "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=false]", + "minecraft:emerald_block[]": "minecraft:emerald_block[]", + "minecraft:spruce_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:spruce_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:spruce_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:spruce_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:spruce_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:spruce_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:spruce_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:spruce_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:birch_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:birch_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:birch_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:birch_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:birch_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:birch_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:birch_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:birch_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:jungle_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:jungle_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:jungle_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:jungle_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:jungle_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:jungle_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:jungle_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:jungle_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:command_block[conditional_bit=1,facing_direction=2]": "minecraft:command_block[conditional=true,facing=north]", + "minecraft:command_block[conditional_bit=1,facing_direction=5]": "minecraft:command_block[conditional=true,facing=east]", + "minecraft:command_block[conditional_bit=1,facing_direction=3]": "minecraft:command_block[conditional=true,facing=south]", + "minecraft:command_block[conditional_bit=1,facing_direction=4]": "minecraft:command_block[conditional=true,facing=west]", + "minecraft:command_block[conditional_bit=1,facing_direction=1]": "minecraft:command_block[conditional=true,facing=up]", + "minecraft:command_block[conditional_bit=1,facing_direction=0]": "minecraft:command_block[conditional=true,facing=down]", + "minecraft:command_block[conditional_bit=0,facing_direction=2]": "minecraft:command_block[conditional=false,facing=north]", + "minecraft:command_block[conditional_bit=0,facing_direction=5]": "minecraft:command_block[conditional=false,facing=east]", + "minecraft:command_block[conditional_bit=0,facing_direction=3]": "minecraft:command_block[conditional=false,facing=south]", + "minecraft:command_block[conditional_bit=0,facing_direction=4]": "minecraft:command_block[conditional=false,facing=west]", + "minecraft:command_block[conditional_bit=0,facing_direction=1]": "minecraft:command_block[conditional=false,facing=up]", + "minecraft:command_block[conditional_bit=0,facing_direction=0]": "minecraft:command_block[conditional=false,facing=down]", + "minecraft:beacon[]": "minecraft:beacon[]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:flower_pot[update_bit=0]": "minecraft:potted_flowering_azalea_bush[]", + "minecraft:carrots[growth=0]": "minecraft:carrots[age=0]", + "minecraft:carrots[growth=1]": "minecraft:carrots[age=1]", + "minecraft:carrots[growth=2]": "minecraft:carrots[age=2]", + "minecraft:carrots[growth=3]": "minecraft:carrots[age=3]", + "minecraft:carrots[growth=4]": "minecraft:carrots[age=4]", + "minecraft:carrots[growth=5]": "minecraft:carrots[age=5]", + "minecraft:carrots[growth=6]": "minecraft:carrots[age=6]", + "minecraft:carrots[growth=7]": "minecraft:carrots[age=7]", + "minecraft:potatoes[growth=0]": "minecraft:potatoes[age=0]", + "minecraft:potatoes[growth=1]": "minecraft:potatoes[age=1]", + "minecraft:potatoes[growth=2]": "minecraft:potatoes[age=2]", + "minecraft:potatoes[growth=3]": "minecraft:potatoes[age=3]", + "minecraft:potatoes[growth=4]": "minecraft:potatoes[age=4]", + "minecraft:potatoes[growth=5]": "minecraft:potatoes[age=5]", + "minecraft:potatoes[growth=6]": "minecraft:potatoes[age=6]", + "minecraft:potatoes[growth=7]": "minecraft:potatoes[age=7]", + "minecraft:wooden_button[button_pressed_bit=1,facing_direction=1]": "minecraft:oak_button[face=floor,facing=east,powered=true]", + "minecraft:wooden_button[button_pressed_bit=0,facing_direction=1]": "minecraft:oak_button[face=floor,facing=east,powered=false]", + "minecraft:wooden_button[button_pressed_bit=1,facing_direction=2]": "minecraft:oak_button[face=wall,facing=north,powered=true]", + "minecraft:wooden_button[button_pressed_bit=0,facing_direction=2]": "minecraft:oak_button[face=wall,facing=north,powered=false]", + "minecraft:wooden_button[button_pressed_bit=1,facing_direction=3]": "minecraft:oak_button[face=wall,facing=south,powered=true]", + "minecraft:wooden_button[button_pressed_bit=0,facing_direction=3]": "minecraft:oak_button[face=wall,facing=south,powered=false]", + "minecraft:wooden_button[button_pressed_bit=1,facing_direction=4]": "minecraft:oak_button[face=wall,facing=west,powered=true]", + "minecraft:wooden_button[button_pressed_bit=0,facing_direction=4]": "minecraft:oak_button[face=wall,facing=west,powered=false]", + "minecraft:wooden_button[button_pressed_bit=1,facing_direction=5]": "minecraft:oak_button[face=wall,facing=east,powered=true]", + "minecraft:wooden_button[button_pressed_bit=0,facing_direction=5]": "minecraft:oak_button[face=wall,facing=east,powered=false]", + "minecraft:wooden_button[button_pressed_bit=1,facing_direction=0]": "minecraft:oak_button[face=ceiling,facing=east,powered=true]", + "minecraft:wooden_button[button_pressed_bit=0,facing_direction=0]": "minecraft:oak_button[face=ceiling,facing=east,powered=false]", + "minecraft:spruce_button[button_pressed_bit=1,facing_direction=1]": "minecraft:spruce_button[face=floor,facing=east,powered=true]", + "minecraft:spruce_button[button_pressed_bit=0,facing_direction=1]": "minecraft:spruce_button[face=floor,facing=east,powered=false]", + "minecraft:spruce_button[button_pressed_bit=1,facing_direction=2]": "minecraft:spruce_button[face=wall,facing=north,powered=true]", + "minecraft:spruce_button[button_pressed_bit=0,facing_direction=2]": "minecraft:spruce_button[face=wall,facing=north,powered=false]", + "minecraft:spruce_button[button_pressed_bit=1,facing_direction=3]": "minecraft:spruce_button[face=wall,facing=south,powered=true]", + "minecraft:spruce_button[button_pressed_bit=0,facing_direction=3]": "minecraft:spruce_button[face=wall,facing=south,powered=false]", + "minecraft:spruce_button[button_pressed_bit=1,facing_direction=4]": "minecraft:spruce_button[face=wall,facing=west,powered=true]", + "minecraft:spruce_button[button_pressed_bit=0,facing_direction=4]": "minecraft:spruce_button[face=wall,facing=west,powered=false]", + "minecraft:spruce_button[button_pressed_bit=1,facing_direction=5]": "minecraft:spruce_button[face=wall,facing=east,powered=true]", + "minecraft:spruce_button[button_pressed_bit=0,facing_direction=5]": "minecraft:spruce_button[face=wall,facing=east,powered=false]", + "minecraft:spruce_button[button_pressed_bit=1,facing_direction=0]": "minecraft:spruce_button[face=ceiling,facing=east,powered=true]", + "minecraft:spruce_button[button_pressed_bit=0,facing_direction=0]": "minecraft:spruce_button[face=ceiling,facing=east,powered=false]", + "minecraft:birch_button[button_pressed_bit=1,facing_direction=1]": "minecraft:birch_button[face=floor,facing=east,powered=true]", + "minecraft:birch_button[button_pressed_bit=0,facing_direction=1]": "minecraft:birch_button[face=floor,facing=east,powered=false]", + "minecraft:birch_button[button_pressed_bit=1,facing_direction=2]": "minecraft:birch_button[face=wall,facing=north,powered=true]", + "minecraft:birch_button[button_pressed_bit=0,facing_direction=2]": "minecraft:birch_button[face=wall,facing=north,powered=false]", + "minecraft:birch_button[button_pressed_bit=1,facing_direction=3]": "minecraft:birch_button[face=wall,facing=south,powered=true]", + "minecraft:birch_button[button_pressed_bit=0,facing_direction=3]": "minecraft:birch_button[face=wall,facing=south,powered=false]", + "minecraft:birch_button[button_pressed_bit=1,facing_direction=4]": "minecraft:birch_button[face=wall,facing=west,powered=true]", + "minecraft:birch_button[button_pressed_bit=0,facing_direction=4]": "minecraft:birch_button[face=wall,facing=west,powered=false]", + "minecraft:birch_button[button_pressed_bit=1,facing_direction=5]": "minecraft:birch_button[face=wall,facing=east,powered=true]", + "minecraft:birch_button[button_pressed_bit=0,facing_direction=5]": "minecraft:birch_button[face=wall,facing=east,powered=false]", + "minecraft:birch_button[button_pressed_bit=1,facing_direction=0]": "minecraft:birch_button[face=ceiling,facing=east,powered=true]", + "minecraft:birch_button[button_pressed_bit=0,facing_direction=0]": "minecraft:birch_button[face=ceiling,facing=east,powered=false]", + "minecraft:jungle_button[button_pressed_bit=1,facing_direction=1]": "minecraft:jungle_button[face=floor,facing=east,powered=true]", + "minecraft:jungle_button[button_pressed_bit=0,facing_direction=1]": "minecraft:jungle_button[face=floor,facing=east,powered=false]", + "minecraft:jungle_button[button_pressed_bit=1,facing_direction=2]": "minecraft:jungle_button[face=wall,facing=north,powered=true]", + "minecraft:jungle_button[button_pressed_bit=0,facing_direction=2]": "minecraft:jungle_button[face=wall,facing=north,powered=false]", + "minecraft:jungle_button[button_pressed_bit=1,facing_direction=3]": "minecraft:jungle_button[face=wall,facing=south,powered=true]", + "minecraft:jungle_button[button_pressed_bit=0,facing_direction=3]": "minecraft:jungle_button[face=wall,facing=south,powered=false]", + "minecraft:jungle_button[button_pressed_bit=1,facing_direction=4]": "minecraft:jungle_button[face=wall,facing=west,powered=true]", + "minecraft:jungle_button[button_pressed_bit=0,facing_direction=4]": "minecraft:jungle_button[face=wall,facing=west,powered=false]", + "minecraft:jungle_button[button_pressed_bit=1,facing_direction=5]": "minecraft:jungle_button[face=wall,facing=east,powered=true]", + "minecraft:jungle_button[button_pressed_bit=0,facing_direction=5]": "minecraft:jungle_button[face=wall,facing=east,powered=false]", + "minecraft:jungle_button[button_pressed_bit=1,facing_direction=0]": "minecraft:jungle_button[face=ceiling,facing=east,powered=true]", + "minecraft:jungle_button[button_pressed_bit=0,facing_direction=0]": "minecraft:jungle_button[face=ceiling,facing=east,powered=false]", + "minecraft:acacia_button[button_pressed_bit=1,facing_direction=1]": "minecraft:acacia_button[face=floor,facing=east,powered=true]", + "minecraft:acacia_button[button_pressed_bit=0,facing_direction=1]": "minecraft:acacia_button[face=floor,facing=east,powered=false]", + "minecraft:acacia_button[button_pressed_bit=1,facing_direction=2]": "minecraft:acacia_button[face=wall,facing=north,powered=true]", + "minecraft:acacia_button[button_pressed_bit=0,facing_direction=2]": "minecraft:acacia_button[face=wall,facing=north,powered=false]", + "minecraft:acacia_button[button_pressed_bit=1,facing_direction=3]": "minecraft:acacia_button[face=wall,facing=south,powered=true]", + "minecraft:acacia_button[button_pressed_bit=0,facing_direction=3]": "minecraft:acacia_button[face=wall,facing=south,powered=false]", + "minecraft:acacia_button[button_pressed_bit=1,facing_direction=4]": "minecraft:acacia_button[face=wall,facing=west,powered=true]", + "minecraft:acacia_button[button_pressed_bit=0,facing_direction=4]": "minecraft:acacia_button[face=wall,facing=west,powered=false]", + "minecraft:acacia_button[button_pressed_bit=1,facing_direction=5]": "minecraft:acacia_button[face=wall,facing=east,powered=true]", + "minecraft:acacia_button[button_pressed_bit=0,facing_direction=5]": "minecraft:acacia_button[face=wall,facing=east,powered=false]", + "minecraft:acacia_button[button_pressed_bit=1,facing_direction=0]": "minecraft:acacia_button[face=ceiling,facing=east,powered=true]", + "minecraft:acacia_button[button_pressed_bit=0,facing_direction=0]": "minecraft:acacia_button[face=ceiling,facing=east,powered=false]", + "minecraft:cherry_button[button_pressed_bit=1,facing_direction=1]": "minecraft:cherry_button[face=floor,facing=east,powered=true]", + "minecraft:cherry_button[button_pressed_bit=0,facing_direction=1]": "minecraft:cherry_button[face=floor,facing=east,powered=false]", + "minecraft:cherry_button[button_pressed_bit=1,facing_direction=2]": "minecraft:cherry_button[face=wall,facing=north,powered=true]", + "minecraft:cherry_button[button_pressed_bit=0,facing_direction=2]": "minecraft:cherry_button[face=wall,facing=north,powered=false]", + "minecraft:cherry_button[button_pressed_bit=1,facing_direction=3]": "minecraft:cherry_button[face=wall,facing=south,powered=true]", + "minecraft:cherry_button[button_pressed_bit=0,facing_direction=3]": "minecraft:cherry_button[face=wall,facing=south,powered=false]", + "minecraft:cherry_button[button_pressed_bit=1,facing_direction=4]": "minecraft:cherry_button[face=wall,facing=west,powered=true]", + "minecraft:cherry_button[button_pressed_bit=0,facing_direction=4]": "minecraft:cherry_button[face=wall,facing=west,powered=false]", + "minecraft:cherry_button[button_pressed_bit=1,facing_direction=5]": "minecraft:cherry_button[face=wall,facing=east,powered=true]", + "minecraft:cherry_button[button_pressed_bit=0,facing_direction=5]": "minecraft:cherry_button[face=wall,facing=east,powered=false]", + "minecraft:cherry_button[button_pressed_bit=1,facing_direction=0]": "minecraft:cherry_button[face=ceiling,facing=east,powered=true]", + "minecraft:cherry_button[button_pressed_bit=0,facing_direction=0]": "minecraft:cherry_button[face=ceiling,facing=east,powered=false]", + "minecraft:dark_oak_button[button_pressed_bit=1,facing_direction=1]": "minecraft:dark_oak_button[face=floor,facing=east,powered=true]", + "minecraft:dark_oak_button[button_pressed_bit=0,facing_direction=1]": "minecraft:dark_oak_button[face=floor,facing=east,powered=false]", + "minecraft:dark_oak_button[button_pressed_bit=1,facing_direction=2]": "minecraft:dark_oak_button[face=wall,facing=north,powered=true]", + "minecraft:dark_oak_button[button_pressed_bit=0,facing_direction=2]": "minecraft:dark_oak_button[face=wall,facing=north,powered=false]", + "minecraft:dark_oak_button[button_pressed_bit=1,facing_direction=3]": "minecraft:dark_oak_button[face=wall,facing=south,powered=true]", + "minecraft:dark_oak_button[button_pressed_bit=0,facing_direction=3]": "minecraft:dark_oak_button[face=wall,facing=south,powered=false]", + "minecraft:dark_oak_button[button_pressed_bit=1,facing_direction=4]": "minecraft:dark_oak_button[face=wall,facing=west,powered=true]", + "minecraft:dark_oak_button[button_pressed_bit=0,facing_direction=4]": "minecraft:dark_oak_button[face=wall,facing=west,powered=false]", + "minecraft:dark_oak_button[button_pressed_bit=1,facing_direction=5]": "minecraft:dark_oak_button[face=wall,facing=east,powered=true]", + "minecraft:dark_oak_button[button_pressed_bit=0,facing_direction=5]": "minecraft:dark_oak_button[face=wall,facing=east,powered=false]", + "minecraft:dark_oak_button[button_pressed_bit=1,facing_direction=0]": "minecraft:dark_oak_button[face=ceiling,facing=east,powered=true]", + "minecraft:dark_oak_button[button_pressed_bit=0,facing_direction=0]": "minecraft:dark_oak_button[face=ceiling,facing=east,powered=false]", + "minecraft:mangrove_button[button_pressed_bit=1,facing_direction=1]": "minecraft:mangrove_button[face=floor,facing=east,powered=true]", + "minecraft:mangrove_button[button_pressed_bit=0,facing_direction=1]": "minecraft:mangrove_button[face=floor,facing=east,powered=false]", + "minecraft:mangrove_button[button_pressed_bit=1,facing_direction=2]": "minecraft:mangrove_button[face=wall,facing=north,powered=true]", + "minecraft:mangrove_button[button_pressed_bit=0,facing_direction=2]": "minecraft:mangrove_button[face=wall,facing=north,powered=false]", + "minecraft:mangrove_button[button_pressed_bit=1,facing_direction=3]": "minecraft:mangrove_button[face=wall,facing=south,powered=true]", + "minecraft:mangrove_button[button_pressed_bit=0,facing_direction=3]": "minecraft:mangrove_button[face=wall,facing=south,powered=false]", + "minecraft:mangrove_button[button_pressed_bit=1,facing_direction=4]": "minecraft:mangrove_button[face=wall,facing=west,powered=true]", + "minecraft:mangrove_button[button_pressed_bit=0,facing_direction=4]": "minecraft:mangrove_button[face=wall,facing=west,powered=false]", + "minecraft:mangrove_button[button_pressed_bit=1,facing_direction=5]": "minecraft:mangrove_button[face=wall,facing=east,powered=true]", + "minecraft:mangrove_button[button_pressed_bit=0,facing_direction=5]": "minecraft:mangrove_button[face=wall,facing=east,powered=false]", + "minecraft:mangrove_button[button_pressed_bit=1,facing_direction=0]": "minecraft:mangrove_button[face=ceiling,facing=east,powered=true]", + "minecraft:mangrove_button[button_pressed_bit=0,facing_direction=0]": "minecraft:mangrove_button[face=ceiling,facing=east,powered=false]", + "minecraft:bamboo_button[button_pressed_bit=1,facing_direction=1]": "minecraft:bamboo_button[face=floor,facing=east,powered=true]", + "minecraft:bamboo_button[button_pressed_bit=0,facing_direction=1]": "minecraft:bamboo_button[face=floor,facing=east,powered=false]", + "minecraft:bamboo_button[button_pressed_bit=1,facing_direction=2]": "minecraft:bamboo_button[face=wall,facing=north,powered=true]", + "minecraft:bamboo_button[button_pressed_bit=0,facing_direction=2]": "minecraft:bamboo_button[face=wall,facing=north,powered=false]", + "minecraft:bamboo_button[button_pressed_bit=1,facing_direction=3]": "minecraft:bamboo_button[face=wall,facing=south,powered=true]", + "minecraft:bamboo_button[button_pressed_bit=0,facing_direction=3]": "minecraft:bamboo_button[face=wall,facing=south,powered=false]", + "minecraft:bamboo_button[button_pressed_bit=1,facing_direction=4]": "minecraft:bamboo_button[face=wall,facing=west,powered=true]", + "minecraft:bamboo_button[button_pressed_bit=0,facing_direction=4]": "minecraft:bamboo_button[face=wall,facing=west,powered=false]", + "minecraft:bamboo_button[button_pressed_bit=1,facing_direction=5]": "minecraft:bamboo_button[face=wall,facing=east,powered=true]", + "minecraft:bamboo_button[button_pressed_bit=0,facing_direction=5]": "minecraft:bamboo_button[face=wall,facing=east,powered=false]", + "minecraft:bamboo_button[button_pressed_bit=1,facing_direction=0]": "minecraft:bamboo_button[face=ceiling,facing=east,powered=true]", + "minecraft:bamboo_button[button_pressed_bit=0,facing_direction=0]": "minecraft:bamboo_button[face=ceiling,facing=east,powered=false]", + "minecraft:skull[facing_direction=1]": "minecraft:piglin_head[powered=false,rotation=15]", + "minecraft:skull[facing_direction=2]": "minecraft:piglin_wall_head[facing=north,powered=false]", + "minecraft:skull[facing_direction=3]": "minecraft:piglin_wall_head[facing=south,powered=false]", + "minecraft:skull[facing_direction=4]": "minecraft:piglin_wall_head[facing=west,powered=false]", + "minecraft:skull[facing_direction=5]": "minecraft:piglin_wall_head[facing=east,powered=false]", + "minecraft:anvil[damage=undamaged,minecraft:cardinal_direction=north]": "minecraft:anvil[facing=north]", + "minecraft:anvil[damage=undamaged,minecraft:cardinal_direction=south]": "minecraft:anvil[facing=south]", + "minecraft:anvil[damage=undamaged,minecraft:cardinal_direction=west]": "minecraft:anvil[facing=west]", + "minecraft:anvil[damage=undamaged,minecraft:cardinal_direction=east]": "minecraft:anvil[facing=east]", + "minecraft:anvil[damage=slightly_damaged,minecraft:cardinal_direction=north]": "minecraft:chipped_anvil[facing=north]", + "minecraft:anvil[damage=slightly_damaged,minecraft:cardinal_direction=south]": "minecraft:chipped_anvil[facing=south]", + "minecraft:anvil[damage=slightly_damaged,minecraft:cardinal_direction=west]": "minecraft:chipped_anvil[facing=west]", + "minecraft:anvil[damage=slightly_damaged,minecraft:cardinal_direction=east]": "minecraft:chipped_anvil[facing=east]", + "minecraft:anvil[damage=very_damaged,minecraft:cardinal_direction=north]": "minecraft:damaged_anvil[facing=north]", + "minecraft:anvil[damage=very_damaged,minecraft:cardinal_direction=south]": "minecraft:damaged_anvil[facing=south]", + "minecraft:anvil[damage=very_damaged,minecraft:cardinal_direction=west]": "minecraft:damaged_anvil[facing=west]", + "minecraft:anvil[damage=very_damaged,minecraft:cardinal_direction=east]": "minecraft:damaged_anvil[facing=east]", + "minecraft:trapped_chest[minecraft:cardinal_direction=north]": "minecraft:trapped_chest[facing=north,type=right,waterlogged=false]", + "minecraft:trapped_chest[minecraft:cardinal_direction=south]": "minecraft:trapped_chest[facing=south,type=right,waterlogged=false]", + "minecraft:trapped_chest[minecraft:cardinal_direction=west]": "minecraft:trapped_chest[facing=west,type=right,waterlogged=false]", + "minecraft:trapped_chest[minecraft:cardinal_direction=east]": "minecraft:trapped_chest[facing=east,type=right,waterlogged=false]", + "minecraft:light_weighted_pressure_plate[redstone_signal=0]": "minecraft:light_weighted_pressure_plate[power=0]", + "minecraft:light_weighted_pressure_plate[redstone_signal=1]": "minecraft:light_weighted_pressure_plate[power=1]", + "minecraft:light_weighted_pressure_plate[redstone_signal=2]": "minecraft:light_weighted_pressure_plate[power=2]", + "minecraft:light_weighted_pressure_plate[redstone_signal=3]": "minecraft:light_weighted_pressure_plate[power=3]", + "minecraft:light_weighted_pressure_plate[redstone_signal=4]": "minecraft:light_weighted_pressure_plate[power=4]", + "minecraft:light_weighted_pressure_plate[redstone_signal=5]": "minecraft:light_weighted_pressure_plate[power=5]", + "minecraft:light_weighted_pressure_plate[redstone_signal=6]": "minecraft:light_weighted_pressure_plate[power=6]", + "minecraft:light_weighted_pressure_plate[redstone_signal=7]": "minecraft:light_weighted_pressure_plate[power=7]", + "minecraft:light_weighted_pressure_plate[redstone_signal=8]": "minecraft:light_weighted_pressure_plate[power=8]", + "minecraft:light_weighted_pressure_plate[redstone_signal=9]": "minecraft:light_weighted_pressure_plate[power=9]", + "minecraft:light_weighted_pressure_plate[redstone_signal=10]": "minecraft:light_weighted_pressure_plate[power=10]", + "minecraft:light_weighted_pressure_plate[redstone_signal=11]": "minecraft:light_weighted_pressure_plate[power=11]", + "minecraft:light_weighted_pressure_plate[redstone_signal=12]": "minecraft:light_weighted_pressure_plate[power=12]", + "minecraft:light_weighted_pressure_plate[redstone_signal=13]": "minecraft:light_weighted_pressure_plate[power=13]", + "minecraft:light_weighted_pressure_plate[redstone_signal=14]": "minecraft:light_weighted_pressure_plate[power=14]", + "minecraft:light_weighted_pressure_plate[redstone_signal=15]": "minecraft:light_weighted_pressure_plate[power=15]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=0]": "minecraft:heavy_weighted_pressure_plate[power=0]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=1]": "minecraft:heavy_weighted_pressure_plate[power=1]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=2]": "minecraft:heavy_weighted_pressure_plate[power=2]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=3]": "minecraft:heavy_weighted_pressure_plate[power=3]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=4]": "minecraft:heavy_weighted_pressure_plate[power=4]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=5]": "minecraft:heavy_weighted_pressure_plate[power=5]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=6]": "minecraft:heavy_weighted_pressure_plate[power=6]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=7]": "minecraft:heavy_weighted_pressure_plate[power=7]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=8]": "minecraft:heavy_weighted_pressure_plate[power=8]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=9]": "minecraft:heavy_weighted_pressure_plate[power=9]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=10]": "minecraft:heavy_weighted_pressure_plate[power=10]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=11]": "minecraft:heavy_weighted_pressure_plate[power=11]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=12]": "minecraft:heavy_weighted_pressure_plate[power=12]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=13]": "minecraft:heavy_weighted_pressure_plate[power=13]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=14]": "minecraft:heavy_weighted_pressure_plate[power=14]", + "minecraft:heavy_weighted_pressure_plate[redstone_signal=15]": "minecraft:heavy_weighted_pressure_plate[power=15]", + "minecraft:powered_comparator[minecraft:cardinal_direction=north,output_lit_bit=1,output_subtract_bit=0]": "minecraft:comparator[facing=north,mode=compare,powered=true]", + "minecraft:unpowered_comparator[minecraft:cardinal_direction=north,output_lit_bit=0,output_subtract_bit=0]": "minecraft:comparator[facing=north,mode=compare,powered=false]", + "minecraft:powered_comparator[minecraft:cardinal_direction=north,output_lit_bit=1,output_subtract_bit=1]": "minecraft:comparator[facing=north,mode=subtract,powered=true]", + "minecraft:unpowered_comparator[minecraft:cardinal_direction=north,output_lit_bit=0,output_subtract_bit=1]": "minecraft:comparator[facing=north,mode=subtract,powered=false]", + "minecraft:powered_comparator[minecraft:cardinal_direction=south,output_lit_bit=1,output_subtract_bit=0]": "minecraft:comparator[facing=south,mode=compare,powered=true]", + "minecraft:unpowered_comparator[minecraft:cardinal_direction=south,output_lit_bit=0,output_subtract_bit=0]": "minecraft:comparator[facing=south,mode=compare,powered=false]", + "minecraft:powered_comparator[minecraft:cardinal_direction=south,output_lit_bit=1,output_subtract_bit=1]": "minecraft:comparator[facing=south,mode=subtract,powered=true]", + "minecraft:unpowered_comparator[minecraft:cardinal_direction=south,output_lit_bit=0,output_subtract_bit=1]": "minecraft:comparator[facing=south,mode=subtract,powered=false]", + "minecraft:powered_comparator[minecraft:cardinal_direction=west,output_lit_bit=1,output_subtract_bit=0]": "minecraft:comparator[facing=west,mode=compare,powered=true]", + "minecraft:unpowered_comparator[minecraft:cardinal_direction=west,output_lit_bit=0,output_subtract_bit=0]": "minecraft:comparator[facing=west,mode=compare,powered=false]", + "minecraft:powered_comparator[minecraft:cardinal_direction=west,output_lit_bit=1,output_subtract_bit=1]": "minecraft:comparator[facing=west,mode=subtract,powered=true]", + "minecraft:unpowered_comparator[minecraft:cardinal_direction=west,output_lit_bit=0,output_subtract_bit=1]": "minecraft:comparator[facing=west,mode=subtract,powered=false]", + "minecraft:powered_comparator[minecraft:cardinal_direction=east,output_lit_bit=1,output_subtract_bit=0]": "minecraft:comparator[facing=east,mode=compare,powered=true]", + "minecraft:unpowered_comparator[minecraft:cardinal_direction=east,output_lit_bit=0,output_subtract_bit=0]": "minecraft:comparator[facing=east,mode=compare,powered=false]", + "minecraft:powered_comparator[minecraft:cardinal_direction=east,output_lit_bit=1,output_subtract_bit=1]": "minecraft:comparator[facing=east,mode=subtract,powered=true]", + "minecraft:unpowered_comparator[minecraft:cardinal_direction=east,output_lit_bit=0,output_subtract_bit=1]": "minecraft:comparator[facing=east,mode=subtract,powered=false]", + "minecraft:daylight_detector_inverted[redstone_signal=0]": "minecraft:daylight_detector[inverted=true,power=0]", + "minecraft:daylight_detector_inverted[redstone_signal=1]": "minecraft:daylight_detector[inverted=true,power=1]", + "minecraft:daylight_detector_inverted[redstone_signal=2]": "minecraft:daylight_detector[inverted=true,power=2]", + "minecraft:daylight_detector_inverted[redstone_signal=3]": "minecraft:daylight_detector[inverted=true,power=3]", + "minecraft:daylight_detector_inverted[redstone_signal=4]": "minecraft:daylight_detector[inverted=true,power=4]", + "minecraft:daylight_detector_inverted[redstone_signal=5]": "minecraft:daylight_detector[inverted=true,power=5]", + "minecraft:daylight_detector_inverted[redstone_signal=6]": "minecraft:daylight_detector[inverted=true,power=6]", + "minecraft:daylight_detector_inverted[redstone_signal=7]": "minecraft:daylight_detector[inverted=true,power=7]", + "minecraft:daylight_detector_inverted[redstone_signal=8]": "minecraft:daylight_detector[inverted=true,power=8]", + "minecraft:daylight_detector_inverted[redstone_signal=9]": "minecraft:daylight_detector[inverted=true,power=9]", + "minecraft:daylight_detector_inverted[redstone_signal=10]": "minecraft:daylight_detector[inverted=true,power=10]", + "minecraft:daylight_detector_inverted[redstone_signal=11]": "minecraft:daylight_detector[inverted=true,power=11]", + "minecraft:daylight_detector_inverted[redstone_signal=12]": "minecraft:daylight_detector[inverted=true,power=12]", + "minecraft:daylight_detector_inverted[redstone_signal=13]": "minecraft:daylight_detector[inverted=true,power=13]", + "minecraft:daylight_detector_inverted[redstone_signal=14]": "minecraft:daylight_detector[inverted=true,power=14]", + "minecraft:daylight_detector_inverted[redstone_signal=15]": "minecraft:daylight_detector[inverted=true,power=15]", + "minecraft:daylight_detector[redstone_signal=0]": "minecraft:daylight_detector[inverted=false,power=0]", + "minecraft:daylight_detector[redstone_signal=1]": "minecraft:daylight_detector[inverted=false,power=1]", + "minecraft:daylight_detector[redstone_signal=2]": "minecraft:daylight_detector[inverted=false,power=2]", + "minecraft:daylight_detector[redstone_signal=3]": "minecraft:daylight_detector[inverted=false,power=3]", + "minecraft:daylight_detector[redstone_signal=4]": "minecraft:daylight_detector[inverted=false,power=4]", + "minecraft:daylight_detector[redstone_signal=5]": "minecraft:daylight_detector[inverted=false,power=5]", + "minecraft:daylight_detector[redstone_signal=6]": "minecraft:daylight_detector[inverted=false,power=6]", + "minecraft:daylight_detector[redstone_signal=7]": "minecraft:daylight_detector[inverted=false,power=7]", + "minecraft:daylight_detector[redstone_signal=8]": "minecraft:daylight_detector[inverted=false,power=8]", + "minecraft:daylight_detector[redstone_signal=9]": "minecraft:daylight_detector[inverted=false,power=9]", + "minecraft:daylight_detector[redstone_signal=10]": "minecraft:daylight_detector[inverted=false,power=10]", + "minecraft:daylight_detector[redstone_signal=11]": "minecraft:daylight_detector[inverted=false,power=11]", + "minecraft:daylight_detector[redstone_signal=12]": "minecraft:daylight_detector[inverted=false,power=12]", + "minecraft:daylight_detector[redstone_signal=13]": "minecraft:daylight_detector[inverted=false,power=13]", + "minecraft:daylight_detector[redstone_signal=14]": "minecraft:daylight_detector[inverted=false,power=14]", + "minecraft:daylight_detector[redstone_signal=15]": "minecraft:daylight_detector[inverted=false,power=15]", + "minecraft:redstone_block[]": "minecraft:redstone_block[]", + "minecraft:quartz_ore[]": "minecraft:nether_quartz_ore[]", + "minecraft:hopper[facing_direction=0,toggle_bit=1]": "minecraft:hopper[enabled=true,facing=down]", + "minecraft:hopper[facing_direction=2,toggle_bit=1]": "minecraft:hopper[enabled=true,facing=north]", + "minecraft:hopper[facing_direction=3,toggle_bit=1]": "minecraft:hopper[enabled=true,facing=south]", + "minecraft:hopper[facing_direction=4,toggle_bit=1]": "minecraft:hopper[enabled=true,facing=west]", + "minecraft:hopper[facing_direction=5,toggle_bit=1]": "minecraft:hopper[enabled=true,facing=east]", + "minecraft:hopper[facing_direction=0,toggle_bit=0]": "minecraft:hopper[enabled=false,facing=down]", + "minecraft:hopper[facing_direction=2,toggle_bit=0]": "minecraft:hopper[enabled=false,facing=north]", + "minecraft:hopper[facing_direction=3,toggle_bit=0]": "minecraft:hopper[enabled=false,facing=south]", + "minecraft:hopper[facing_direction=4,toggle_bit=0]": "minecraft:hopper[enabled=false,facing=west]", + "minecraft:hopper[facing_direction=5,toggle_bit=0]": "minecraft:hopper[enabled=false,facing=east]", + "minecraft:quartz_block[chisel_type=default,pillar_axis=y]": "minecraft:quartz_block[]", + "minecraft:quartz_block[chisel_type=chiseled,pillar_axis=y]": "minecraft:chiseled_quartz_block[]", + "minecraft:quartz_block[chisel_type=lines,pillar_axis=x]": "minecraft:quartz_pillar[axis=x]", + "minecraft:quartz_block[chisel_type=lines,pillar_axis=y]": "minecraft:quartz_pillar[axis=y]", + "minecraft:quartz_block[chisel_type=lines,pillar_axis=z]": "minecraft:quartz_pillar[axis=z]", + "minecraft:quartz_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:quartz_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:quartz_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:quartz_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:quartz_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:quartz_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:quartz_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:quartz_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=1,rail_direction=0]": "minecraft:activator_rail[powered=true,shape=north_south,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=1,rail_direction=1]": "minecraft:activator_rail[powered=true,shape=east_west,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=1,rail_direction=2]": "minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=1,rail_direction=3]": "minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=1,rail_direction=4]": "minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=1,rail_direction=5]": "minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=0,rail_direction=0]": "minecraft:activator_rail[powered=false,shape=north_south,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=0,rail_direction=1]": "minecraft:activator_rail[powered=false,shape=east_west,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=0,rail_direction=2]": "minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=0,rail_direction=3]": "minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=0,rail_direction=4]": "minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=false]", + "minecraft:activator_rail[rail_data_bit=0,rail_direction=5]": "minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=false]", + "minecraft:dropper[facing_direction=2,triggered_bit=1]": "minecraft:dropper[facing=north,triggered=true]", + "minecraft:dropper[facing_direction=2,triggered_bit=0]": "minecraft:dropper[facing=north,triggered=false]", + "minecraft:dropper[facing_direction=5,triggered_bit=1]": "minecraft:dropper[facing=east,triggered=true]", + "minecraft:dropper[facing_direction=5,triggered_bit=0]": "minecraft:dropper[facing=east,triggered=false]", + "minecraft:dropper[facing_direction=3,triggered_bit=1]": "minecraft:dropper[facing=south,triggered=true]", + "minecraft:dropper[facing_direction=3,triggered_bit=0]": "minecraft:dropper[facing=south,triggered=false]", + "minecraft:dropper[facing_direction=4,triggered_bit=1]": "minecraft:dropper[facing=west,triggered=true]", + "minecraft:dropper[facing_direction=4,triggered_bit=0]": "minecraft:dropper[facing=west,triggered=false]", + "minecraft:dropper[facing_direction=1,triggered_bit=1]": "minecraft:dropper[facing=up,triggered=true]", + "minecraft:dropper[facing_direction=1,triggered_bit=0]": "minecraft:dropper[facing=up,triggered=false]", + "minecraft:dropper[facing_direction=0,triggered_bit=1]": "minecraft:dropper[facing=down,triggered=true]", + "minecraft:dropper[facing_direction=0,triggered_bit=0]": "minecraft:dropper[facing=down,triggered=false]", + "minecraft:white_terracotta[]": "minecraft:white_terracotta[]", + "minecraft:orange_terracotta[]": "minecraft:orange_terracotta[]", + "minecraft:magenta_terracotta[]": "minecraft:magenta_terracotta[]", + "minecraft:light_blue_terracotta[]": "minecraft:light_blue_terracotta[]", + "minecraft:yellow_terracotta[]": "minecraft:yellow_terracotta[]", + "minecraft:lime_terracotta[]": "minecraft:lime_terracotta[]", + "minecraft:pink_terracotta[]": "minecraft:pink_terracotta[]", + "minecraft:gray_terracotta[]": "minecraft:gray_terracotta[]", + "minecraft:light_gray_terracotta[]": "minecraft:light_gray_terracotta[]", + "minecraft:cyan_terracotta[]": "minecraft:cyan_terracotta[]", + "minecraft:purple_terracotta[]": "minecraft:purple_terracotta[]", + "minecraft:blue_terracotta[]": "minecraft:blue_terracotta[]", + "minecraft:brown_terracotta[]": "minecraft:brown_terracotta[]", + "minecraft:green_terracotta[]": "minecraft:green_terracotta[]", + "minecraft:red_terracotta[]": "minecraft:red_terracotta[]", + "minecraft:black_terracotta[]": "minecraft:black_terracotta[]", + "minecraft:white_stained_glass_pane[]": "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:orange_stained_glass_pane[]": "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:magenta_stained_glass_pane[]": "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:light_blue_stained_glass_pane[]": "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:yellow_stained_glass_pane[]": "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:lime_stained_glass_pane[]": "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:pink_stained_glass_pane[]": "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:gray_stained_glass_pane[]": "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:light_gray_stained_glass_pane[]": "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:cyan_stained_glass_pane[]": "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:purple_stained_glass_pane[]": "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:blue_stained_glass_pane[]": "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:brown_stained_glass_pane[]": "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:green_stained_glass_pane[]": "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:red_stained_glass_pane[]": "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:black_stained_glass_pane[]": "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:acacia_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:acacia_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:acacia_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:acacia_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:acacia_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:acacia_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:acacia_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:acacia_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cherry_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:cherry_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cherry_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cherry_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:cherry_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cherry_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cherry_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:cherry_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cherry_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cherry_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:cherry_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cherry_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:dark_oak_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:dark_oak_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:dark_oak_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:dark_oak_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:dark_oak_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:dark_oak_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:dark_oak_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:dark_oak_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mangrove_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mangrove_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mangrove_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mangrove_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mangrove_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mangrove_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mangrove_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mangrove_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_mosaic_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_mosaic_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_mosaic_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_mosaic_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_mosaic_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_mosaic_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_mosaic_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:bamboo_mosaic_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:slime[]": "minecraft:slime_block[]", + "minecraft:barrier[]": "minecraft:barrier[waterlogged=false]", + "minecraft:light_block[block_light_level=0]": "minecraft:light[level=0,waterlogged=false]", + "minecraft:light_block[block_light_level=1]": "minecraft:light[level=1,waterlogged=false]", + "minecraft:light_block[block_light_level=2]": "minecraft:light[level=2,waterlogged=false]", + "minecraft:light_block[block_light_level=3]": "minecraft:light[level=3,waterlogged=false]", + "minecraft:light_block[block_light_level=4]": "minecraft:light[level=4,waterlogged=false]", + "minecraft:light_block[block_light_level=5]": "minecraft:light[level=5,waterlogged=false]", + "minecraft:light_block[block_light_level=6]": "minecraft:light[level=6,waterlogged=false]", + "minecraft:light_block[block_light_level=7]": "minecraft:light[level=7,waterlogged=false]", + "minecraft:light_block[block_light_level=8]": "minecraft:light[level=8,waterlogged=false]", + "minecraft:light_block[block_light_level=9]": "minecraft:light[level=9,waterlogged=false]", + "minecraft:light_block[block_light_level=10]": "minecraft:light[level=10,waterlogged=false]", + "minecraft:light_block[block_light_level=11]": "minecraft:light[level=11,waterlogged=false]", + "minecraft:light_block[block_light_level=12]": "minecraft:light[level=12,waterlogged=false]", + "minecraft:light_block[block_light_level=13]": "minecraft:light[level=13,waterlogged=false]", + "minecraft:light_block[block_light_level=14]": "minecraft:light[level=14,waterlogged=false]", + "minecraft:light_block[block_light_level=15]": "minecraft:light[level=15,waterlogged=false]", + "minecraft:iron_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:iron_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:prismarine[prismarine_block_type=default]": "minecraft:prismarine[]", + "minecraft:prismarine[prismarine_block_type=bricks]": "minecraft:prismarine_bricks[]", + "minecraft:prismarine[prismarine_block_type=dark]": "minecraft:dark_prismarine[]", + "minecraft:prismarine_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_bricks_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_bricks_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_bricks_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_bricks_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_bricks_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_bricks_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_bricks_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:prismarine_bricks_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:dark_prismarine_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:dark_prismarine_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:dark_prismarine_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:dark_prismarine_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:dark_prismarine_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:dark_prismarine_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:dark_prismarine_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:dark_prismarine_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=prismarine_rough]": "minecraft:prismarine_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_rough]": "minecraft:prismarine_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_rough]": "minecraft:prismarine_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=prismarine_brick]": "minecraft:prismarine_brick_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_brick]": "minecraft:prismarine_brick_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_brick]": "minecraft:prismarine_brick_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=prismarine_dark]": "minecraft:dark_prismarine_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_dark]": "minecraft:dark_prismarine_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_dark]": "minecraft:dark_prismarine_slab[type=double,waterlogged=false]", + "minecraft:sea_lantern[]": "minecraft:sea_lantern[]", + "minecraft:hay_block[deprecated=0,pillar_axis=x]": "minecraft:hay_block[axis=x]", + "minecraft:hay_block[deprecated=0,pillar_axis=y]": "minecraft:hay_block[axis=y]", + "minecraft:hay_block[deprecated=0,pillar_axis=z]": "minecraft:hay_block[axis=z]", + "minecraft:white_carpet[]": "minecraft:white_carpet[]", + "minecraft:orange_carpet[]": "minecraft:orange_carpet[]", + "minecraft:magenta_carpet[]": "minecraft:magenta_carpet[]", + "minecraft:light_blue_carpet[]": "minecraft:light_blue_carpet[]", + "minecraft:yellow_carpet[]": "minecraft:yellow_carpet[]", + "minecraft:lime_carpet[]": "minecraft:lime_carpet[]", + "minecraft:pink_carpet[]": "minecraft:pink_carpet[]", + "minecraft:gray_carpet[]": "minecraft:gray_carpet[]", + "minecraft:light_gray_carpet[]": "minecraft:light_gray_carpet[]", + "minecraft:cyan_carpet[]": "minecraft:cyan_carpet[]", + "minecraft:purple_carpet[]": "minecraft:purple_carpet[]", + "minecraft:blue_carpet[]": "minecraft:blue_carpet[]", + "minecraft:brown_carpet[]": "minecraft:brown_carpet[]", + "minecraft:green_carpet[]": "minecraft:green_carpet[]", + "minecraft:red_carpet[]": "minecraft:red_carpet[]", + "minecraft:black_carpet[]": "minecraft:black_carpet[]", + "minecraft:hardened_clay[]": "minecraft:terracotta[]", + "minecraft:coal_block[]": "minecraft:coal_block[]", + "minecraft:packed_ice[]": "minecraft:packed_ice[]", + "minecraft:sunflower[upper_block_bit=1]": "minecraft:sunflower[half=upper]", + "minecraft:sunflower[upper_block_bit=0]": "minecraft:sunflower[half=lower]", + "minecraft:lilac[upper_block_bit=1]": "minecraft:lilac[half=upper]", + "minecraft:lilac[upper_block_bit=0]": "minecraft:lilac[half=lower]", + "minecraft:rose_bush[upper_block_bit=1]": "minecraft:rose_bush[half=upper]", + "minecraft:rose_bush[upper_block_bit=0]": "minecraft:rose_bush[half=lower]", + "minecraft:peony[upper_block_bit=1]": "minecraft:peony[half=upper]", + "minecraft:peony[upper_block_bit=0]": "minecraft:peony[half=lower]", + "minecraft:tall_grass[upper_block_bit=1]": "minecraft:tall_grass[half=upper]", + "minecraft:tall_grass[upper_block_bit=0]": "minecraft:tall_grass[half=lower]", + "minecraft:large_fern[upper_block_bit=1]": "minecraft:large_fern[half=upper]", + "minecraft:large_fern[upper_block_bit=0]": "minecraft:large_fern[half=lower]", + "minecraft:standing_banner[ground_sign_direction=0]": "minecraft:black_banner[rotation=0]", + "minecraft:standing_banner[ground_sign_direction=1]": "minecraft:black_banner[rotation=1]", + "minecraft:standing_banner[ground_sign_direction=2]": "minecraft:black_banner[rotation=2]", + "minecraft:standing_banner[ground_sign_direction=3]": "minecraft:black_banner[rotation=3]", + "minecraft:standing_banner[ground_sign_direction=4]": "minecraft:black_banner[rotation=4]", + "minecraft:standing_banner[ground_sign_direction=5]": "minecraft:black_banner[rotation=5]", + "minecraft:standing_banner[ground_sign_direction=6]": "minecraft:black_banner[rotation=6]", + "minecraft:standing_banner[ground_sign_direction=7]": "minecraft:black_banner[rotation=7]", + "minecraft:standing_banner[ground_sign_direction=8]": "minecraft:black_banner[rotation=8]", + "minecraft:standing_banner[ground_sign_direction=9]": "minecraft:black_banner[rotation=9]", + "minecraft:standing_banner[ground_sign_direction=10]": "minecraft:black_banner[rotation=10]", + "minecraft:standing_banner[ground_sign_direction=11]": "minecraft:black_banner[rotation=11]", + "minecraft:standing_banner[ground_sign_direction=12]": "minecraft:black_banner[rotation=12]", + "minecraft:standing_banner[ground_sign_direction=13]": "minecraft:black_banner[rotation=13]", + "minecraft:standing_banner[ground_sign_direction=14]": "minecraft:black_banner[rotation=14]", + "minecraft:standing_banner[ground_sign_direction=15]": "minecraft:black_banner[rotation=15]", + "minecraft:wall_banner[facing_direction=2]": "minecraft:black_wall_banner[facing=north]", + "minecraft:wall_banner[facing_direction=3]": "minecraft:black_wall_banner[facing=south]", + "minecraft:wall_banner[facing_direction=4]": "minecraft:black_wall_banner[facing=west]", + "minecraft:wall_banner[facing_direction=5]": "minecraft:black_wall_banner[facing=east]", + "minecraft:red_sandstone[sand_stone_type=default]": "minecraft:red_sandstone[]", + "minecraft:red_sandstone[sand_stone_type=heiroglyphs]": "minecraft:chiseled_red_sandstone[]", + "minecraft:red_sandstone[sand_stone_type=cut]": "minecraft:cut_red_sandstone[]", + "minecraft:red_sandstone_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:red_sandstone_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:red_sandstone_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:red_sandstone_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:red_sandstone_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:red_sandstone_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:red_sandstone_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:red_sandstone_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:oak_slab[minecraft:vertical_half=top]": "minecraft:oak_slab[type=top,waterlogged=false]", + "minecraft:oak_slab[minecraft:vertical_half=bottom]": "minecraft:oak_slab[type=bottom,waterlogged=false]", + "minecraft:oak_double_slab[minecraft:vertical_half=bottom]": "minecraft:oak_slab[type=double,waterlogged=false]", + "minecraft:spruce_slab[minecraft:vertical_half=top]": "minecraft:spruce_slab[type=top,waterlogged=false]", + "minecraft:spruce_slab[minecraft:vertical_half=bottom]": "minecraft:spruce_slab[type=bottom,waterlogged=false]", + "minecraft:spruce_double_slab[minecraft:vertical_half=bottom]": "minecraft:spruce_slab[type=double,waterlogged=false]", + "minecraft:birch_slab[minecraft:vertical_half=top]": "minecraft:birch_slab[type=top,waterlogged=false]", + "minecraft:birch_slab[minecraft:vertical_half=bottom]": "minecraft:birch_slab[type=bottom,waterlogged=false]", + "minecraft:birch_double_slab[minecraft:vertical_half=bottom]": "minecraft:birch_slab[type=double,waterlogged=false]", + "minecraft:jungle_slab[minecraft:vertical_half=top]": "minecraft:jungle_slab[type=top,waterlogged=false]", + "minecraft:jungle_slab[minecraft:vertical_half=bottom]": "minecraft:jungle_slab[type=bottom,waterlogged=false]", + "minecraft:jungle_double_slab[minecraft:vertical_half=bottom]": "minecraft:jungle_slab[type=double,waterlogged=false]", + "minecraft:acacia_slab[minecraft:vertical_half=top]": "minecraft:acacia_slab[type=top,waterlogged=false]", + "minecraft:acacia_slab[minecraft:vertical_half=bottom]": "minecraft:acacia_slab[type=bottom,waterlogged=false]", + "minecraft:acacia_double_slab[minecraft:vertical_half=bottom]": "minecraft:acacia_slab[type=double,waterlogged=false]", + "minecraft:cherry_slab[minecraft:vertical_half=top]": "minecraft:cherry_slab[type=top,waterlogged=false]", + "minecraft:cherry_slab[minecraft:vertical_half=bottom]": "minecraft:cherry_slab[type=bottom,waterlogged=false]", + "minecraft:cherry_double_slab[minecraft:vertical_half=bottom]": "minecraft:cherry_slab[type=double,waterlogged=false]", + "minecraft:dark_oak_slab[minecraft:vertical_half=top]": "minecraft:dark_oak_slab[type=top,waterlogged=false]", + "minecraft:dark_oak_slab[minecraft:vertical_half=bottom]": "minecraft:dark_oak_slab[type=bottom,waterlogged=false]", + "minecraft:dark_oak_double_slab[minecraft:vertical_half=bottom]": "minecraft:dark_oak_slab[type=double,waterlogged=false]", + "minecraft:mangrove_slab[minecraft:vertical_half=top]": "minecraft:mangrove_slab[type=top,waterlogged=false]", + "minecraft:mangrove_slab[minecraft:vertical_half=bottom]": "minecraft:mangrove_slab[type=bottom,waterlogged=false]", + "minecraft:mangrove_double_slab[minecraft:vertical_half=bottom]": "minecraft:mangrove_slab[type=double,waterlogged=false]", + "minecraft:bamboo_slab[minecraft:vertical_half=top]": "minecraft:bamboo_slab[type=top,waterlogged=false]", + "minecraft:bamboo_slab[minecraft:vertical_half=bottom]": "minecraft:bamboo_slab[type=bottom,waterlogged=false]", + "minecraft:bamboo_double_slab[minecraft:vertical_half=bottom]": "minecraft:bamboo_slab[type=double,waterlogged=false]", + "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=top]": "minecraft:bamboo_mosaic_slab[type=top,waterlogged=false]", + "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=bottom]": "minecraft:bamboo_mosaic_slab[type=bottom,waterlogged=false]", + "minecraft:bamboo_mosaic_double_slab[minecraft:vertical_half=bottom]": "minecraft:bamboo_mosaic_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=stone]": "minecraft:stone_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=stone]": "minecraft:stone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=stone]": "minecraft:stone_slab[type=double,waterlogged=false]", + "minecraft:smooth_stone_slab[minecraft:vertical_half=top]": "minecraft:smooth_stone_slab[type=top,waterlogged=false]", + "minecraft:smooth_stone_slab[minecraft:vertical_half=bottom]": "minecraft:smooth_stone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=smooth_stone]": "minecraft:smooth_stone_slab[type=double,waterlogged=false]", + "minecraft:sandstone_slab[minecraft:vertical_half=top]": "minecraft:sandstone_slab[type=top,waterlogged=false]", + "minecraft:sandstone_slab[minecraft:vertical_half=bottom]": "minecraft:sandstone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=sandstone]": "minecraft:sandstone_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=cut_sandstone]": "minecraft:cut_sandstone_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_sandstone]": "minecraft:cut_sandstone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_sandstone]": "minecraft:cut_sandstone_slab[type=double,waterlogged=false]", + "minecraft:petrified_oak_slab[minecraft:vertical_half=top]": "minecraft:petrified_oak_slab[type=top,waterlogged=false]", + "minecraft:petrified_oak_slab[minecraft:vertical_half=bottom]": "minecraft:petrified_oak_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=wood]": "minecraft:petrified_oak_slab[type=double,waterlogged=false]", + "minecraft:cobblestone_slab[minecraft:vertical_half=top]": "minecraft:cobblestone_slab[type=top,waterlogged=false]", + "minecraft:cobblestone_slab[minecraft:vertical_half=bottom]": "minecraft:cobblestone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=cobblestone]": "minecraft:cobblestone_slab[type=double,waterlogged=false]", + "minecraft:brick_slab[minecraft:vertical_half=top]": "minecraft:brick_slab[type=top,waterlogged=false]", + "minecraft:brick_slab[minecraft:vertical_half=bottom]": "minecraft:brick_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=brick]": "minecraft:brick_slab[type=double,waterlogged=false]", + "minecraft:stone_brick_slab[minecraft:vertical_half=top]": "minecraft:stone_brick_slab[type=top,waterlogged=false]", + "minecraft:stone_brick_slab[minecraft:vertical_half=bottom]": "minecraft:stone_brick_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=stone_brick]": "minecraft:stone_brick_slab[type=double,waterlogged=false]", + "minecraft:mud_brick_slab[minecraft:vertical_half=top]": "minecraft:mud_brick_slab[type=top,waterlogged=false]", + "minecraft:mud_brick_slab[minecraft:vertical_half=bottom]": "minecraft:mud_brick_slab[type=bottom,waterlogged=false]", + "minecraft:mud_brick_double_slab[minecraft:vertical_half=bottom]": "minecraft:mud_brick_slab[type=double,waterlogged=false]", + "minecraft:nether_brick_slab[minecraft:vertical_half=top]": "minecraft:nether_brick_slab[type=top,waterlogged=false]", + "minecraft:nether_brick_slab[minecraft:vertical_half=bottom]": "minecraft:nether_brick_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=nether_brick]": "minecraft:nether_brick_slab[type=double,waterlogged=false]", + "minecraft:quartz_slab[minecraft:vertical_half=top]": "minecraft:quartz_slab[type=top,waterlogged=false]", + "minecraft:quartz_slab[minecraft:vertical_half=bottom]": "minecraft:quartz_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=quartz]": "minecraft:quartz_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=red_sandstone]": "minecraft:red_sandstone_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_sandstone]": "minecraft:red_sandstone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_sandstone]": "minecraft:red_sandstone_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=cut_red_sandstone]": "minecraft:cut_red_sandstone_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_red_sandstone]": "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_red_sandstone]": "minecraft:cut_red_sandstone_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=purpur]": "minecraft:purpur_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=purpur]": "minecraft:purpur_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=purpur]": "minecraft:purpur_slab[type=double,waterlogged=false]", + "minecraft:smooth_stone[]": "minecraft:smooth_stone[]", + "minecraft:sandstone[sand_stone_type=smooth]": "minecraft:smooth_sandstone[]", + "minecraft:quartz_block[chisel_type=smooth,pillar_axis=y]": "minecraft:smooth_quartz[]", + "minecraft:red_sandstone[sand_stone_type=smooth]": "minecraft:smooth_red_sandstone[]", + "minecraft:spruce_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:spruce_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:spruce_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:spruce_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:spruce_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:spruce_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:spruce_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:spruce_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:spruce_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:spruce_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:spruce_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:spruce_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:spruce_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:spruce_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:spruce_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:spruce_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:birch_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:birch_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:birch_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:birch_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:birch_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:birch_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:birch_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:birch_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:birch_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:birch_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:birch_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:birch_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:birch_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:birch_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:birch_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:birch_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:jungle_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:jungle_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:jungle_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:jungle_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:jungle_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:jungle_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:jungle_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:jungle_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:jungle_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:jungle_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:jungle_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:jungle_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:jungle_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:jungle_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:jungle_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:jungle_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:acacia_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:acacia_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:acacia_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:acacia_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:acacia_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:acacia_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:acacia_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:acacia_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:acacia_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:acacia_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:acacia_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:acacia_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:acacia_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:acacia_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:acacia_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:acacia_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:cherry_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:cherry_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:cherry_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:cherry_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:cherry_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:cherry_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:cherry_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:cherry_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:cherry_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:cherry_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:cherry_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:cherry_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:cherry_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:cherry_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:cherry_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:cherry_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:spruce_fence[]": "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:birch_fence[]": "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:jungle_fence[]": "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:acacia_fence[]": "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:cherry_fence[]": "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:dark_oak_fence[]": "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:mangrove_fence[]": "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:bamboo_fence[]": "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:spruce_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:spruce_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:spruce_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:spruce_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:spruce_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:spruce_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:spruce_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:spruce_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:spruce_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:spruce_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:spruce_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:spruce_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:spruce_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:spruce_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:spruce_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:spruce_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:spruce_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:spruce_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:spruce_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:spruce_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:spruce_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:spruce_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:spruce_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:spruce_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:spruce_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:spruce_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:spruce_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:spruce_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:spruce_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:spruce_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:spruce_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:spruce_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:birch_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:birch_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:birch_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:birch_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:birch_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:birch_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:birch_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:birch_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:birch_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:birch_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:birch_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:birch_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:birch_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:birch_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:birch_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:birch_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:birch_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:birch_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:birch_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:birch_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:birch_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:birch_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:birch_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:birch_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:birch_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:birch_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:birch_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:birch_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:birch_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:birch_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:birch_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:birch_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:jungle_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:jungle_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:jungle_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:jungle_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:jungle_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:jungle_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:jungle_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:jungle_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:jungle_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:jungle_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:jungle_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:jungle_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:jungle_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:jungle_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:jungle_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:jungle_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:jungle_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:jungle_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:jungle_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:jungle_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:jungle_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:jungle_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:jungle_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:jungle_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:jungle_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:jungle_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:jungle_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:jungle_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:jungle_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:jungle_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:jungle_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:jungle_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:acacia_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:acacia_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:acacia_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:acacia_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:acacia_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:acacia_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:acacia_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:acacia_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:acacia_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:acacia_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:acacia_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:acacia_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:acacia_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:acacia_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:acacia_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:acacia_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:acacia_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:acacia_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:acacia_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:acacia_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:acacia_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:acacia_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:acacia_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:acacia_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:acacia_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:acacia_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:acacia_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:acacia_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:acacia_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:acacia_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:acacia_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:acacia_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:cherry_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:cherry_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:cherry_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:cherry_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:cherry_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:cherry_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:cherry_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:cherry_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:cherry_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:cherry_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:cherry_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:cherry_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:cherry_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:cherry_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:cherry_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:cherry_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:cherry_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:cherry_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:cherry_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:cherry_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:cherry_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:cherry_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:cherry_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:cherry_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:cherry_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:cherry_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:cherry_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:cherry_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:cherry_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:cherry_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:cherry_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:cherry_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:dark_oak_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:dark_oak_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:dark_oak_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:dark_oak_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:dark_oak_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:dark_oak_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:dark_oak_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:dark_oak_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:dark_oak_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:dark_oak_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:dark_oak_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:dark_oak_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:dark_oak_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:dark_oak_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:dark_oak_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:dark_oak_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:dark_oak_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:dark_oak_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:dark_oak_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:dark_oak_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:dark_oak_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:dark_oak_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:dark_oak_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:dark_oak_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:dark_oak_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:dark_oak_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:dark_oak_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:dark_oak_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:dark_oak_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:dark_oak_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:dark_oak_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:dark_oak_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:mangrove_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:mangrove_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:mangrove_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:mangrove_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:mangrove_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:mangrove_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:mangrove_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:mangrove_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:mangrove_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:mangrove_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:mangrove_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:mangrove_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:mangrove_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:mangrove_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:mangrove_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:mangrove_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:mangrove_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:mangrove_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:mangrove_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:mangrove_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:mangrove_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:mangrove_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:mangrove_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:mangrove_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:mangrove_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:mangrove_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:mangrove_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:mangrove_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:mangrove_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:mangrove_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:mangrove_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:mangrove_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:bamboo_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:bamboo_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:bamboo_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:bamboo_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:bamboo_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:bamboo_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:bamboo_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:bamboo_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:bamboo_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:bamboo_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:bamboo_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:bamboo_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:bamboo_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:bamboo_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:bamboo_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:bamboo_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:bamboo_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:bamboo_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:bamboo_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:bamboo_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:bamboo_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:bamboo_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:bamboo_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:bamboo_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:bamboo_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:bamboo_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:bamboo_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:bamboo_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:bamboo_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:bamboo_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:bamboo_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:bamboo_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:end_rod[facing_direction=3]": "minecraft:end_rod[facing=north]", + "minecraft:end_rod[facing_direction=4]": "minecraft:end_rod[facing=east]", + "minecraft:end_rod[facing_direction=2]": "minecraft:end_rod[facing=south]", + "minecraft:end_rod[facing_direction=5]": "minecraft:end_rod[facing=west]", + "minecraft:end_rod[facing_direction=1]": "minecraft:end_rod[facing=up]", + "minecraft:end_rod[facing_direction=0]": "minecraft:end_rod[facing=down]", + "minecraft:chorus_plant[]": "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false]", + "minecraft:chorus_flower[age=0]": "minecraft:chorus_flower[age=0]", + "minecraft:chorus_flower[age=1]": "minecraft:chorus_flower[age=1]", + "minecraft:chorus_flower[age=2]": "minecraft:chorus_flower[age=2]", + "minecraft:chorus_flower[age=3]": "minecraft:chorus_flower[age=3]", + "minecraft:chorus_flower[age=4]": "minecraft:chorus_flower[age=4]", + "minecraft:chorus_flower[age=5]": "minecraft:chorus_flower[age=5]", + "minecraft:purpur_block[chisel_type=default,pillar_axis=y]": "minecraft:purpur_block[]", + "minecraft:purpur_block[chisel_type=lines,pillar_axis=x]": "minecraft:purpur_pillar[axis=x]", + "minecraft:purpur_block[chisel_type=lines,pillar_axis=y]": "minecraft:purpur_pillar[axis=y]", + "minecraft:purpur_block[chisel_type=lines,pillar_axis=z]": "minecraft:purpur_pillar[axis=z]", + "minecraft:purpur_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:purpur_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:purpur_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:purpur_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:purpur_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:purpur_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:purpur_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:purpur_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:end_bricks[]": "minecraft:end_stone_bricks[]", + "minecraft:torchflower_crop[growth=0]": "minecraft:torchflower_crop[age=0]", + "minecraft:torchflower_crop[growth=4]": "minecraft:torchflower_crop[age=1]", + "minecraft:pitcher_crop[growth=0,upper_block_bit=1]": "minecraft:pitcher_crop[age=0,half=upper]", + "minecraft:pitcher_crop[growth=0,upper_block_bit=0]": "minecraft:pitcher_crop[age=0,half=lower]", + "minecraft:pitcher_crop[growth=1,upper_block_bit=1]": "minecraft:pitcher_crop[age=1,half=upper]", + "minecraft:pitcher_crop[growth=1,upper_block_bit=0]": "minecraft:pitcher_crop[age=1,half=lower]", + "minecraft:pitcher_crop[growth=3,upper_block_bit=1]": "minecraft:pitcher_crop[age=2,half=upper]", + "minecraft:pitcher_crop[growth=3,upper_block_bit=0]": "minecraft:pitcher_crop[age=2,half=lower]", + "minecraft:pitcher_crop[growth=5,upper_block_bit=1]": "minecraft:pitcher_crop[age=3,half=upper]", + "minecraft:pitcher_crop[growth=5,upper_block_bit=0]": "minecraft:pitcher_crop[age=3,half=lower]", + "minecraft:pitcher_crop[growth=7,upper_block_bit=1]": "minecraft:pitcher_crop[age=4,half=upper]", + "minecraft:pitcher_crop[growth=7,upper_block_bit=0]": "minecraft:pitcher_crop[age=4,half=lower]", + "minecraft:pitcher_plant[upper_block_bit=1]": "minecraft:pitcher_plant[half=upper]", + "minecraft:pitcher_plant[upper_block_bit=0]": "minecraft:pitcher_plant[half=lower]", + "minecraft:beetroot[growth=0]": "minecraft:beetroots[age=0]", + "minecraft:beetroot[growth=3]": "minecraft:beetroots[age=1]", + "minecraft:beetroot[growth=4]": "minecraft:beetroots[age=2]", + "minecraft:beetroot[growth=7]": "minecraft:beetroots[age=3]", + "minecraft:grass_path[]": "minecraft:dirt_path[]", + "minecraft:end_gateway[]": "minecraft:end_gateway[]", + "minecraft:repeating_command_block[conditional_bit=1,facing_direction=2]": "minecraft:repeating_command_block[conditional=true,facing=north]", + "minecraft:repeating_command_block[conditional_bit=1,facing_direction=5]": "minecraft:repeating_command_block[conditional=true,facing=east]", + "minecraft:repeating_command_block[conditional_bit=1,facing_direction=3]": "minecraft:repeating_command_block[conditional=true,facing=south]", + "minecraft:repeating_command_block[conditional_bit=1,facing_direction=4]": "minecraft:repeating_command_block[conditional=true,facing=west]", + "minecraft:repeating_command_block[conditional_bit=1,facing_direction=1]": "minecraft:repeating_command_block[conditional=true,facing=up]", + "minecraft:repeating_command_block[conditional_bit=1,facing_direction=0]": "minecraft:repeating_command_block[conditional=true,facing=down]", + "minecraft:repeating_command_block[conditional_bit=0,facing_direction=2]": "minecraft:repeating_command_block[conditional=false,facing=north]", + "minecraft:repeating_command_block[conditional_bit=0,facing_direction=5]": "minecraft:repeating_command_block[conditional=false,facing=east]", + "minecraft:repeating_command_block[conditional_bit=0,facing_direction=3]": "minecraft:repeating_command_block[conditional=false,facing=south]", + "minecraft:repeating_command_block[conditional_bit=0,facing_direction=4]": "minecraft:repeating_command_block[conditional=false,facing=west]", + "minecraft:repeating_command_block[conditional_bit=0,facing_direction=1]": "minecraft:repeating_command_block[conditional=false,facing=up]", + "minecraft:repeating_command_block[conditional_bit=0,facing_direction=0]": "minecraft:repeating_command_block[conditional=false,facing=down]", + "minecraft:chain_command_block[conditional_bit=1,facing_direction=2]": "minecraft:chain_command_block[conditional=true,facing=north]", + "minecraft:chain_command_block[conditional_bit=1,facing_direction=5]": "minecraft:chain_command_block[conditional=true,facing=east]", + "minecraft:chain_command_block[conditional_bit=1,facing_direction=3]": "minecraft:chain_command_block[conditional=true,facing=south]", + "minecraft:chain_command_block[conditional_bit=1,facing_direction=4]": "minecraft:chain_command_block[conditional=true,facing=west]", + "minecraft:chain_command_block[conditional_bit=1,facing_direction=1]": "minecraft:chain_command_block[conditional=true,facing=up]", + "minecraft:chain_command_block[conditional_bit=1,facing_direction=0]": "minecraft:chain_command_block[conditional=true,facing=down]", + "minecraft:chain_command_block[conditional_bit=0,facing_direction=2]": "minecraft:chain_command_block[conditional=false,facing=north]", + "minecraft:chain_command_block[conditional_bit=0,facing_direction=5]": "minecraft:chain_command_block[conditional=false,facing=east]", + "minecraft:chain_command_block[conditional_bit=0,facing_direction=3]": "minecraft:chain_command_block[conditional=false,facing=south]", + "minecraft:chain_command_block[conditional_bit=0,facing_direction=4]": "minecraft:chain_command_block[conditional=false,facing=west]", + "minecraft:chain_command_block[conditional_bit=0,facing_direction=1]": "minecraft:chain_command_block[conditional=false,facing=up]", + "minecraft:chain_command_block[conditional_bit=0,facing_direction=0]": "minecraft:chain_command_block[conditional=false,facing=down]", + "minecraft:frosted_ice[age=0]": "minecraft:frosted_ice[age=0]", + "minecraft:frosted_ice[age=1]": "minecraft:frosted_ice[age=1]", + "minecraft:frosted_ice[age=2]": "minecraft:frosted_ice[age=2]", + "minecraft:frosted_ice[age=3]": "minecraft:frosted_ice[age=3]", + "minecraft:magma[]": "minecraft:magma_block[]", + "minecraft:nether_wart_block[]": "minecraft:nether_wart_block[]", + "minecraft:red_nether_brick[]": "minecraft:red_nether_bricks[]", + "minecraft:bone_block[deprecated=0,pillar_axis=x]": "minecraft:bone_block[axis=x]", + "minecraft:bone_block[deprecated=0,pillar_axis=y]": "minecraft:bone_block[axis=y]", + "minecraft:bone_block[deprecated=0,pillar_axis=z]": "minecraft:bone_block[axis=z]", + "minecraft:structure_void[structure_void_type=air]": "minecraft:structure_void[]", + "minecraft:observer[minecraft:facing_direction=north,powered_bit=1]": "minecraft:observer[facing=north,powered=true]", + "minecraft:observer[minecraft:facing_direction=north,powered_bit=0]": "minecraft:observer[facing=north,powered=false]", + "minecraft:observer[minecraft:facing_direction=east,powered_bit=1]": "minecraft:observer[facing=east,powered=true]", + "minecraft:observer[minecraft:facing_direction=east,powered_bit=0]": "minecraft:observer[facing=east,powered=false]", + "minecraft:observer[minecraft:facing_direction=south,powered_bit=1]": "minecraft:observer[facing=south,powered=true]", + "minecraft:observer[minecraft:facing_direction=south,powered_bit=0]": "minecraft:observer[facing=south,powered=false]", + "minecraft:observer[minecraft:facing_direction=west,powered_bit=1]": "minecraft:observer[facing=west,powered=true]", + "minecraft:observer[minecraft:facing_direction=west,powered_bit=0]": "minecraft:observer[facing=west,powered=false]", + "minecraft:observer[minecraft:facing_direction=up,powered_bit=1]": "minecraft:observer[facing=up,powered=true]", + "minecraft:observer[minecraft:facing_direction=up,powered_bit=0]": "minecraft:observer[facing=up,powered=false]", + "minecraft:observer[minecraft:facing_direction=down,powered_bit=1]": "minecraft:observer[facing=down,powered=true]", + "minecraft:observer[minecraft:facing_direction=down,powered_bit=0]": "minecraft:observer[facing=down,powered=false]", + "minecraft:undyed_shulker_box[]": "minecraft:shulker_box[facing=down]", + "minecraft:white_shulker_box[]": "minecraft:white_shulker_box[facing=down]", + "minecraft:orange_shulker_box[]": "minecraft:orange_shulker_box[facing=down]", + "minecraft:magenta_shulker_box[]": "minecraft:magenta_shulker_box[facing=down]", + "minecraft:light_blue_shulker_box[]": "minecraft:light_blue_shulker_box[facing=down]", + "minecraft:yellow_shulker_box[]": "minecraft:yellow_shulker_box[facing=down]", + "minecraft:lime_shulker_box[]": "minecraft:lime_shulker_box[facing=down]", + "minecraft:pink_shulker_box[]": "minecraft:pink_shulker_box[facing=down]", + "minecraft:gray_shulker_box[]": "minecraft:gray_shulker_box[facing=down]", + "minecraft:light_gray_shulker_box[]": "minecraft:light_gray_shulker_box[facing=down]", + "minecraft:cyan_shulker_box[]": "minecraft:cyan_shulker_box[facing=down]", + "minecraft:purple_shulker_box[]": "minecraft:purple_shulker_box[facing=down]", + "minecraft:blue_shulker_box[]": "minecraft:blue_shulker_box[facing=down]", + "minecraft:brown_shulker_box[]": "minecraft:brown_shulker_box[facing=down]", + "minecraft:green_shulker_box[]": "minecraft:green_shulker_box[facing=down]", + "minecraft:red_shulker_box[]": "minecraft:red_shulker_box[facing=down]", + "minecraft:black_shulker_box[]": "minecraft:black_shulker_box[facing=down]", + "minecraft:white_glazed_terracotta[facing_direction=2]": "minecraft:white_glazed_terracotta[facing=north]", + "minecraft:white_glazed_terracotta[facing_direction=3]": "minecraft:white_glazed_terracotta[facing=south]", + "minecraft:white_glazed_terracotta[facing_direction=4]": "minecraft:white_glazed_terracotta[facing=west]", + "minecraft:white_glazed_terracotta[facing_direction=5]": "minecraft:white_glazed_terracotta[facing=east]", + "minecraft:orange_glazed_terracotta[facing_direction=2]": "minecraft:orange_glazed_terracotta[facing=north]", + "minecraft:orange_glazed_terracotta[facing_direction=3]": "minecraft:orange_glazed_terracotta[facing=south]", + "minecraft:orange_glazed_terracotta[facing_direction=4]": "minecraft:orange_glazed_terracotta[facing=west]", + "minecraft:orange_glazed_terracotta[facing_direction=5]": "minecraft:orange_glazed_terracotta[facing=east]", + "minecraft:magenta_glazed_terracotta[facing_direction=2]": "minecraft:magenta_glazed_terracotta[facing=north]", + "minecraft:magenta_glazed_terracotta[facing_direction=3]": "minecraft:magenta_glazed_terracotta[facing=south]", + "minecraft:magenta_glazed_terracotta[facing_direction=4]": "minecraft:magenta_glazed_terracotta[facing=west]", + "minecraft:magenta_glazed_terracotta[facing_direction=5]": "minecraft:magenta_glazed_terracotta[facing=east]", + "minecraft:light_blue_glazed_terracotta[facing_direction=2]": "minecraft:light_blue_glazed_terracotta[facing=north]", + "minecraft:light_blue_glazed_terracotta[facing_direction=3]": "minecraft:light_blue_glazed_terracotta[facing=south]", + "minecraft:light_blue_glazed_terracotta[facing_direction=4]": "minecraft:light_blue_glazed_terracotta[facing=west]", + "minecraft:light_blue_glazed_terracotta[facing_direction=5]": "minecraft:light_blue_glazed_terracotta[facing=east]", + "minecraft:yellow_glazed_terracotta[facing_direction=2]": "minecraft:yellow_glazed_terracotta[facing=north]", + "minecraft:yellow_glazed_terracotta[facing_direction=3]": "minecraft:yellow_glazed_terracotta[facing=south]", + "minecraft:yellow_glazed_terracotta[facing_direction=4]": "minecraft:yellow_glazed_terracotta[facing=west]", + "minecraft:yellow_glazed_terracotta[facing_direction=5]": "minecraft:yellow_glazed_terracotta[facing=east]", + "minecraft:lime_glazed_terracotta[facing_direction=2]": "minecraft:lime_glazed_terracotta[facing=north]", + "minecraft:lime_glazed_terracotta[facing_direction=3]": "minecraft:lime_glazed_terracotta[facing=south]", + "minecraft:lime_glazed_terracotta[facing_direction=4]": "minecraft:lime_glazed_terracotta[facing=west]", + "minecraft:lime_glazed_terracotta[facing_direction=5]": "minecraft:lime_glazed_terracotta[facing=east]", + "minecraft:pink_glazed_terracotta[facing_direction=2]": "minecraft:pink_glazed_terracotta[facing=north]", + "minecraft:pink_glazed_terracotta[facing_direction=3]": "minecraft:pink_glazed_terracotta[facing=south]", + "minecraft:pink_glazed_terracotta[facing_direction=4]": "minecraft:pink_glazed_terracotta[facing=west]", + "minecraft:pink_glazed_terracotta[facing_direction=5]": "minecraft:pink_glazed_terracotta[facing=east]", + "minecraft:gray_glazed_terracotta[facing_direction=2]": "minecraft:gray_glazed_terracotta[facing=north]", + "minecraft:gray_glazed_terracotta[facing_direction=3]": "minecraft:gray_glazed_terracotta[facing=south]", + "minecraft:gray_glazed_terracotta[facing_direction=4]": "minecraft:gray_glazed_terracotta[facing=west]", + "minecraft:gray_glazed_terracotta[facing_direction=5]": "minecraft:gray_glazed_terracotta[facing=east]", + "minecraft:silver_glazed_terracotta[facing_direction=2]": "minecraft:light_gray_glazed_terracotta[facing=north]", + "minecraft:silver_glazed_terracotta[facing_direction=3]": "minecraft:light_gray_glazed_terracotta[facing=south]", + "minecraft:silver_glazed_terracotta[facing_direction=4]": "minecraft:light_gray_glazed_terracotta[facing=west]", + "minecraft:silver_glazed_terracotta[facing_direction=5]": "minecraft:light_gray_glazed_terracotta[facing=east]", + "minecraft:cyan_glazed_terracotta[facing_direction=2]": "minecraft:cyan_glazed_terracotta[facing=north]", + "minecraft:cyan_glazed_terracotta[facing_direction=3]": "minecraft:cyan_glazed_terracotta[facing=south]", + "minecraft:cyan_glazed_terracotta[facing_direction=4]": "minecraft:cyan_glazed_terracotta[facing=west]", + "minecraft:cyan_glazed_terracotta[facing_direction=5]": "minecraft:cyan_glazed_terracotta[facing=east]", + "minecraft:purple_glazed_terracotta[facing_direction=2]": "minecraft:purple_glazed_terracotta[facing=north]", + "minecraft:purple_glazed_terracotta[facing_direction=3]": "minecraft:purple_glazed_terracotta[facing=south]", + "minecraft:purple_glazed_terracotta[facing_direction=4]": "minecraft:purple_glazed_terracotta[facing=west]", + "minecraft:purple_glazed_terracotta[facing_direction=5]": "minecraft:purple_glazed_terracotta[facing=east]", + "minecraft:blue_glazed_terracotta[facing_direction=2]": "minecraft:blue_glazed_terracotta[facing=north]", + "minecraft:blue_glazed_terracotta[facing_direction=3]": "minecraft:blue_glazed_terracotta[facing=south]", + "minecraft:blue_glazed_terracotta[facing_direction=4]": "minecraft:blue_glazed_terracotta[facing=west]", + "minecraft:blue_glazed_terracotta[facing_direction=5]": "minecraft:blue_glazed_terracotta[facing=east]", + "minecraft:brown_glazed_terracotta[facing_direction=2]": "minecraft:brown_glazed_terracotta[facing=north]", + "minecraft:brown_glazed_terracotta[facing_direction=3]": "minecraft:brown_glazed_terracotta[facing=south]", + "minecraft:brown_glazed_terracotta[facing_direction=4]": "minecraft:brown_glazed_terracotta[facing=west]", + "minecraft:brown_glazed_terracotta[facing_direction=5]": "minecraft:brown_glazed_terracotta[facing=east]", + "minecraft:green_glazed_terracotta[facing_direction=2]": "minecraft:green_glazed_terracotta[facing=north]", + "minecraft:green_glazed_terracotta[facing_direction=3]": "minecraft:green_glazed_terracotta[facing=south]", + "minecraft:green_glazed_terracotta[facing_direction=4]": "minecraft:green_glazed_terracotta[facing=west]", + "minecraft:green_glazed_terracotta[facing_direction=5]": "minecraft:green_glazed_terracotta[facing=east]", + "minecraft:red_glazed_terracotta[facing_direction=2]": "minecraft:red_glazed_terracotta[facing=north]", + "minecraft:red_glazed_terracotta[facing_direction=3]": "minecraft:red_glazed_terracotta[facing=south]", + "minecraft:red_glazed_terracotta[facing_direction=4]": "minecraft:red_glazed_terracotta[facing=west]", + "minecraft:red_glazed_terracotta[facing_direction=5]": "minecraft:red_glazed_terracotta[facing=east]", + "minecraft:black_glazed_terracotta[facing_direction=2]": "minecraft:black_glazed_terracotta[facing=north]", + "minecraft:black_glazed_terracotta[facing_direction=3]": "minecraft:black_glazed_terracotta[facing=south]", + "minecraft:black_glazed_terracotta[facing_direction=4]": "minecraft:black_glazed_terracotta[facing=west]", + "minecraft:black_glazed_terracotta[facing_direction=5]": "minecraft:black_glazed_terracotta[facing=east]", + "minecraft:white_concrete[]": "minecraft:white_concrete[]", + "minecraft:orange_concrete[]": "minecraft:orange_concrete[]", + "minecraft:magenta_concrete[]": "minecraft:magenta_concrete[]", + "minecraft:light_blue_concrete[]": "minecraft:light_blue_concrete[]", + "minecraft:yellow_concrete[]": "minecraft:yellow_concrete[]", + "minecraft:lime_concrete[]": "minecraft:lime_concrete[]", + "minecraft:pink_concrete[]": "minecraft:pink_concrete[]", + "minecraft:gray_concrete[]": "minecraft:gray_concrete[]", + "minecraft:light_gray_concrete[]": "minecraft:light_gray_concrete[]", + "minecraft:cyan_concrete[]": "minecraft:cyan_concrete[]", + "minecraft:purple_concrete[]": "minecraft:purple_concrete[]", + "minecraft:blue_concrete[]": "minecraft:blue_concrete[]", + "minecraft:brown_concrete[]": "minecraft:brown_concrete[]", + "minecraft:green_concrete[]": "minecraft:green_concrete[]", + "minecraft:red_concrete[]": "minecraft:red_concrete[]", + "minecraft:black_concrete[]": "minecraft:black_concrete[]", + "minecraft:white_concrete_powder[]": "minecraft:white_concrete_powder[]", + "minecraft:orange_concrete_powder[]": "minecraft:orange_concrete_powder[]", + "minecraft:magenta_concrete_powder[]": "minecraft:magenta_concrete_powder[]", + "minecraft:light_blue_concrete_powder[]": "minecraft:light_blue_concrete_powder[]", + "minecraft:yellow_concrete_powder[]": "minecraft:yellow_concrete_powder[]", + "minecraft:lime_concrete_powder[]": "minecraft:lime_concrete_powder[]", + "minecraft:pink_concrete_powder[]": "minecraft:pink_concrete_powder[]", + "minecraft:gray_concrete_powder[]": "minecraft:gray_concrete_powder[]", + "minecraft:light_gray_concrete_powder[]": "minecraft:light_gray_concrete_powder[]", + "minecraft:cyan_concrete_powder[]": "minecraft:cyan_concrete_powder[]", + "minecraft:purple_concrete_powder[]": "minecraft:purple_concrete_powder[]", + "minecraft:blue_concrete_powder[]": "minecraft:blue_concrete_powder[]", + "minecraft:brown_concrete_powder[]": "minecraft:brown_concrete_powder[]", + "minecraft:green_concrete_powder[]": "minecraft:green_concrete_powder[]", + "minecraft:red_concrete_powder[]": "minecraft:red_concrete_powder[]", + "minecraft:black_concrete_powder[]": "minecraft:black_concrete_powder[]", + "minecraft:kelp[kelp_age=0]": "minecraft:kelp_plant[]", + "minecraft:kelp[kelp_age=1]": "minecraft:kelp[age=1]", + "minecraft:kelp[kelp_age=2]": "minecraft:kelp[age=2]", + "minecraft:kelp[kelp_age=3]": "minecraft:kelp[age=3]", + "minecraft:kelp[kelp_age=4]": "minecraft:kelp[age=4]", + "minecraft:kelp[kelp_age=5]": "minecraft:kelp[age=5]", + "minecraft:kelp[kelp_age=6]": "minecraft:kelp[age=6]", + "minecraft:kelp[kelp_age=7]": "minecraft:kelp[age=7]", + "minecraft:kelp[kelp_age=8]": "minecraft:kelp[age=8]", + "minecraft:kelp[kelp_age=9]": "minecraft:kelp[age=9]", + "minecraft:kelp[kelp_age=10]": "minecraft:kelp[age=10]", + "minecraft:kelp[kelp_age=11]": "minecraft:kelp[age=11]", + "minecraft:kelp[kelp_age=12]": "minecraft:kelp[age=12]", + "minecraft:kelp[kelp_age=13]": "minecraft:kelp[age=13]", + "minecraft:kelp[kelp_age=14]": "minecraft:kelp[age=14]", + "minecraft:kelp[kelp_age=15]": "minecraft:kelp[age=15]", + "minecraft:kelp[kelp_age=16]": "minecraft:kelp[age=16]", + "minecraft:kelp[kelp_age=17]": "minecraft:kelp[age=17]", + "minecraft:kelp[kelp_age=18]": "minecraft:kelp[age=18]", + "minecraft:kelp[kelp_age=19]": "minecraft:kelp[age=19]", + "minecraft:kelp[kelp_age=20]": "minecraft:kelp[age=20]", + "minecraft:kelp[kelp_age=21]": "minecraft:kelp[age=21]", + "minecraft:kelp[kelp_age=22]": "minecraft:kelp[age=22]", + "minecraft:kelp[kelp_age=23]": "minecraft:kelp[age=23]", + "minecraft:kelp[kelp_age=24]": "minecraft:kelp[age=24]", + "minecraft:kelp[kelp_age=25]": "minecraft:kelp[age=25]", + "minecraft:dried_kelp_block[]": "minecraft:dried_kelp_block[]", + "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=one_egg]": "minecraft:turtle_egg[eggs=1,hatch=0]", + "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=one_egg]": "minecraft:turtle_egg[eggs=1,hatch=1]", + "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=one_egg]": "minecraft:turtle_egg[eggs=1,hatch=2]", + "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=two_egg]": "minecraft:turtle_egg[eggs=2,hatch=0]", + "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=two_egg]": "minecraft:turtle_egg[eggs=2,hatch=1]", + "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=two_egg]": "minecraft:turtle_egg[eggs=2,hatch=2]", + "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=three_egg]": "minecraft:turtle_egg[eggs=3,hatch=0]", + "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=three_egg]": "minecraft:turtle_egg[eggs=3,hatch=1]", + "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=three_egg]": "minecraft:turtle_egg[eggs=3,hatch=2]", + "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=four_egg]": "minecraft:turtle_egg[eggs=4,hatch=0]", + "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=four_egg]": "minecraft:turtle_egg[eggs=4,hatch=1]", + "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=four_egg]": "minecraft:turtle_egg[eggs=4,hatch=2]", + "minecraft:sniffer_egg[cracked_state=no_cracks]": "minecraft:sniffer_egg[hatch=0]", + "minecraft:sniffer_egg[cracked_state=cracked]": "minecraft:sniffer_egg[hatch=1]", + "minecraft:sniffer_egg[cracked_state=max_cracked]": "minecraft:sniffer_egg[hatch=2]", + "minecraft:dead_tube_coral_block[]": "minecraft:dead_tube_coral_block[]", + "minecraft:dead_brain_coral_block[]": "minecraft:dead_brain_coral_block[]", + "minecraft:dead_bubble_coral_block[]": "minecraft:dead_bubble_coral_block[]", + "minecraft:dead_fire_coral_block[]": "minecraft:dead_fire_coral_block[]", + "minecraft:dead_horn_coral_block[]": "minecraft:dead_horn_coral_block[]", + "minecraft:tube_coral_block[]": "minecraft:tube_coral_block[]", + "minecraft:brain_coral_block[]": "minecraft:brain_coral_block[]", + "minecraft:bubble_coral_block[]": "minecraft:bubble_coral_block[]", + "minecraft:fire_coral_block[]": "minecraft:fire_coral_block[]", + "minecraft:horn_coral_block[]": "minecraft:horn_coral_block[]", + "minecraft:dead_tube_coral[]": "minecraft:dead_tube_coral[waterlogged=false]", + "minecraft:dead_brain_coral[]": "minecraft:dead_brain_coral[waterlogged=false]", + "minecraft:dead_bubble_coral[]": "minecraft:dead_bubble_coral[waterlogged=false]", + "minecraft:dead_fire_coral[]": "minecraft:dead_fire_coral[waterlogged=false]", + "minecraft:dead_horn_coral[]": "minecraft:dead_horn_coral[waterlogged=false]", + "minecraft:tube_coral[]": "minecraft:tube_coral[waterlogged=false]", + "minecraft:brain_coral[]": "minecraft:brain_coral[waterlogged=false]", + "minecraft:bubble_coral[]": "minecraft:bubble_coral[waterlogged=false]", + "minecraft:fire_coral[]": "minecraft:fire_coral[waterlogged=false]", + "minecraft:horn_coral[]": "minecraft:horn_coral[waterlogged=false]", + "minecraft:dead_tube_coral_fan[coral_fan_direction=0]": "minecraft:dead_tube_coral_fan[waterlogged=false]", + "minecraft:dead_brain_coral_fan[coral_fan_direction=0]": "minecraft:dead_brain_coral_fan[waterlogged=false]", + "minecraft:dead_bubble_coral_fan[coral_fan_direction=0]": "minecraft:dead_bubble_coral_fan[waterlogged=false]", + "minecraft:dead_fire_coral_fan[coral_fan_direction=0]": "minecraft:dead_fire_coral_fan[waterlogged=false]", + "minecraft:dead_horn_coral_fan[coral_fan_direction=0]": "minecraft:dead_horn_coral_fan[waterlogged=false]", + "minecraft:tube_coral_fan[coral_fan_direction=0]": "minecraft:tube_coral_fan[waterlogged=false]", + "minecraft:brain_coral_fan[coral_fan_direction=0]": "minecraft:brain_coral_fan[waterlogged=false]", + "minecraft:bubble_coral_fan[coral_fan_direction=0]": "minecraft:bubble_coral_fan[waterlogged=false]", + "minecraft:fire_coral_fan[coral_fan_direction=0]": "minecraft:fire_coral_fan[waterlogged=false]", + "minecraft:horn_coral_fan[coral_fan_direction=0]": "minecraft:horn_coral_fan[waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=1,dead_bit=1]": "minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=1,dead_bit=1]": "minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=1,dead_bit=1]": "minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=1,dead_bit=1]": "minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=1,dead_bit=1]": "minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=1,dead_bit=1]": "minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=1,dead_bit=1]": "minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=1,dead_bit=1]": "minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:coral_fan_hang3[coral_direction=2,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang3[coral_direction=3,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang3[coral_direction=0,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang3[coral_direction=1,coral_hang_type_bit=0,dead_bit=1]": "minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=0,dead_bit=0]": "minecraft:tube_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=0,dead_bit=0]": "minecraft:tube_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=0,dead_bit=0]": "minecraft:tube_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=0,dead_bit=0]": "minecraft:tube_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=1,dead_bit=0]": "minecraft:brain_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=1,dead_bit=0]": "minecraft:brain_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=1,dead_bit=0]": "minecraft:brain_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=1,dead_bit=0]": "minecraft:brain_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=0,dead_bit=0]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=0,dead_bit=0]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=0,dead_bit=0]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=0,dead_bit=0]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=1,dead_bit=0]": "minecraft:fire_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=1,dead_bit=0]": "minecraft:fire_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=1,dead_bit=0]": "minecraft:fire_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=1,dead_bit=0]": "minecraft:fire_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:coral_fan_hang3[coral_direction=2,coral_hang_type_bit=0,dead_bit=0]": "minecraft:horn_coral_wall_fan[facing=north,waterlogged=false]", + "minecraft:coral_fan_hang3[coral_direction=3,coral_hang_type_bit=0,dead_bit=0]": "minecraft:horn_coral_wall_fan[facing=south,waterlogged=false]", + "minecraft:coral_fan_hang3[coral_direction=0,coral_hang_type_bit=0,dead_bit=0]": "minecraft:horn_coral_wall_fan[facing=west,waterlogged=false]", + "minecraft:coral_fan_hang3[coral_direction=1,coral_hang_type_bit=0,dead_bit=0]": "minecraft:horn_coral_wall_fan[facing=east,waterlogged=false]", + "minecraft:sea_pickle[cluster_count=0,dead_bit=0]": "minecraft:sea_pickle[pickles=1,waterlogged=true]", + "minecraft:sea_pickle[cluster_count=0,dead_bit=1]": "minecraft:sea_pickle[pickles=1,waterlogged=false]", + "minecraft:sea_pickle[cluster_count=1,dead_bit=0]": "minecraft:sea_pickle[pickles=2,waterlogged=true]", + "minecraft:sea_pickle[cluster_count=1,dead_bit=1]": "minecraft:sea_pickle[pickles=2,waterlogged=false]", + "minecraft:sea_pickle[cluster_count=2,dead_bit=0]": "minecraft:sea_pickle[pickles=3,waterlogged=true]", + "minecraft:sea_pickle[cluster_count=2,dead_bit=1]": "minecraft:sea_pickle[pickles=3,waterlogged=false]", + "minecraft:sea_pickle[cluster_count=3,dead_bit=0]": "minecraft:sea_pickle[pickles=4,waterlogged=true]", + "minecraft:sea_pickle[cluster_count=3,dead_bit=1]": "minecraft:sea_pickle[pickles=4,waterlogged=false]", + "minecraft:blue_ice[]": "minecraft:blue_ice[]", + "minecraft:conduit[]": "minecraft:conduit[waterlogged=false]", + "minecraft:bamboo_sapling[age_bit=0]": "minecraft:bamboo_sapling[]", + "minecraft:bamboo[age_bit=0,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thin]": "minecraft:bamboo[age=0,leaves=none,stage=1]", + "minecraft:bamboo[age_bit=0,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thin]": "minecraft:bamboo[age=0,leaves=small,stage=1]", + "minecraft:bamboo[age_bit=0,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thin]": "minecraft:bamboo[age=0,leaves=large,stage=1]", + "minecraft:bamboo[age_bit=0,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thick]": "minecraft:bamboo[age=1,leaves=none,stage=1]", + "minecraft:bamboo[age_bit=0,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thick]": "minecraft:bamboo[age=1,leaves=small,stage=1]", + "minecraft:bamboo[age_bit=0,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thick]": "minecraft:bamboo[age=1,leaves=large,stage=1]", + "minecraft:bubble_column[drag_down=1]": "minecraft:bubble_column[drag=true]", + "minecraft:bubble_column[drag_down=0]": "minecraft:bubble_column[drag=false]", + "minecraft:polished_granite_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_granite_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_granite_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_granite_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_granite_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_granite_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_granite_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_granite_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_red_sandstone_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_red_sandstone_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_red_sandstone_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_red_sandstone_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_red_sandstone_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_red_sandstone_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_red_sandstone_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_red_sandstone_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mossy_stone_brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mossy_stone_brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mossy_stone_brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mossy_stone_brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mossy_stone_brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mossy_stone_brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mossy_stone_brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mossy_stone_brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_diorite_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_diorite_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_diorite_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_diorite_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_diorite_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_diorite_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_diorite_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_diorite_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mossy_cobblestone_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mossy_cobblestone_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mossy_cobblestone_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mossy_cobblestone_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mossy_cobblestone_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mossy_cobblestone_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:mossy_cobblestone_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:mossy_cobblestone_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:end_brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:end_brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:end_brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:end_brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:end_brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:end_brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:end_brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:end_brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:normal_stone_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:normal_stone_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:normal_stone_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:normal_stone_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:normal_stone_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:normal_stone_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:normal_stone_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:normal_stone_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_sandstone_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_sandstone_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_sandstone_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_sandstone_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_sandstone_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_sandstone_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_sandstone_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_sandstone_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_quartz_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_quartz_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_quartz_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_quartz_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_quartz_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_quartz_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:smooth_quartz_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:smooth_quartz_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:granite_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:granite_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:granite_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:granite_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:granite_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:granite_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:granite_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:granite_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:andesite_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:andesite_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:andesite_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:andesite_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:andesite_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:andesite_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:andesite_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:andesite_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:red_nether_brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:red_nether_brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:red_nether_brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:red_nether_brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:red_nether_brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:red_nether_brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:red_nether_brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:red_nether_brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_andesite_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_andesite_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_andesite_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_andesite_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_andesite_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_andesite_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_andesite_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_andesite_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:diorite_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:diorite_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:diorite_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:diorite_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:diorite_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:diorite_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:diorite_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:diorite_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=polished_granite]": "minecraft:polished_granite_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_granite]": "minecraft:polished_granite_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_granite]": "minecraft:polished_granite_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=smooth_red_sandstone]": "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=smooth_red_sandstone]": "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=smooth_red_sandstone]": "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=mossy_stone_brick]": "minecraft:mossy_stone_brick_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=mossy_stone_brick]": "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=mossy_stone_brick]": "minecraft:mossy_stone_brick_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=polished_diorite]": "minecraft:polished_diorite_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_diorite]": "minecraft:polished_diorite_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_diorite]": "minecraft:polished_diorite_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=mossy_cobblestone]": "minecraft:mossy_cobblestone_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=mossy_cobblestone]": "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=mossy_cobblestone]": "minecraft:mossy_cobblestone_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=end_stone_brick]": "minecraft:end_stone_brick_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=end_stone_brick]": "minecraft:end_stone_brick_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=end_stone_brick]": "minecraft:end_stone_brick_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=smooth_sandstone]": "minecraft:smooth_sandstone_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=smooth_sandstone]": "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=smooth_sandstone]": "minecraft:smooth_sandstone_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=smooth_quartz]": "minecraft:smooth_quartz_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=smooth_quartz]": "minecraft:smooth_quartz_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=smooth_quartz]": "minecraft:smooth_quartz_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=granite]": "minecraft:granite_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=granite]": "minecraft:granite_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=granite]": "minecraft:granite_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=andesite]": "minecraft:andesite_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=andesite]": "minecraft:andesite_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=andesite]": "minecraft:andesite_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=red_nether_brick]": "minecraft:red_nether_brick_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_nether_brick]": "minecraft:red_nether_brick_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_nether_brick]": "minecraft:red_nether_brick_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=polished_andesite]": "minecraft:polished_andesite_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_andesite]": "minecraft:polished_andesite_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_andesite]": "minecraft:polished_andesite_slab[type=double,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=diorite]": "minecraft:diorite_slab[type=top,waterlogged=false]", + "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=diorite]": "minecraft:diorite_slab[type=bottom,waterlogged=false]", + "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=diorite]": "minecraft:diorite_slab[type=double,waterlogged=false]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:scaffolding[stability=0,stability_check=0]": "minecraft:scaffolding[bottom=true,distance=0,waterlogged=false]", + "minecraft:scaffolding[stability=1,stability_check=0]": "minecraft:scaffolding[bottom=true,distance=1,waterlogged=false]", + "minecraft:scaffolding[stability=2,stability_check=0]": "minecraft:scaffolding[bottom=true,distance=2,waterlogged=false]", + "minecraft:scaffolding[stability=3,stability_check=0]": "minecraft:scaffolding[bottom=true,distance=3,waterlogged=false]", + "minecraft:scaffolding[stability=4,stability_check=0]": "minecraft:scaffolding[bottom=true,distance=4,waterlogged=false]", + "minecraft:scaffolding[stability=5,stability_check=0]": "minecraft:scaffolding[bottom=true,distance=5,waterlogged=false]", + "minecraft:scaffolding[stability=6,stability_check=0]": "minecraft:scaffolding[bottom=true,distance=6,waterlogged=false]", + "minecraft:scaffolding[stability=7,stability_check=0]": "minecraft:scaffolding[bottom=true,distance=7,waterlogged=false]", + "minecraft:scaffolding[stability=0,stability_check=1]": "minecraft:scaffolding[bottom=false,distance=0,waterlogged=false]", + "minecraft:scaffolding[stability=1,stability_check=1]": "minecraft:scaffolding[bottom=false,distance=1,waterlogged=false]", + "minecraft:scaffolding[stability=2,stability_check=1]": "minecraft:scaffolding[bottom=false,distance=2,waterlogged=false]", + "minecraft:scaffolding[stability=3,stability_check=1]": "minecraft:scaffolding[bottom=false,distance=3,waterlogged=false]", + "minecraft:scaffolding[stability=4,stability_check=1]": "minecraft:scaffolding[bottom=false,distance=4,waterlogged=false]", + "minecraft:scaffolding[stability=5,stability_check=1]": "minecraft:scaffolding[bottom=false,distance=5,waterlogged=false]", + "minecraft:scaffolding[stability=6,stability_check=1]": "minecraft:scaffolding[bottom=false,distance=6,waterlogged=false]", + "minecraft:scaffolding[stability=7,stability_check=1]": "minecraft:scaffolding[bottom=false,distance=7,waterlogged=false]", + "minecraft:loom[direction=2]": "minecraft:loom[facing=north]", + "minecraft:loom[direction=0]": "minecraft:loom[facing=south]", + "minecraft:loom[direction=1]": "minecraft:loom[facing=west]", + "minecraft:loom[direction=3]": "minecraft:loom[facing=east]", + "minecraft:barrel[facing_direction=2,open_bit=1]": "minecraft:barrel[facing=north,open=true]", + "minecraft:barrel[facing_direction=2,open_bit=0]": "minecraft:barrel[facing=north,open=false]", + "minecraft:barrel[facing_direction=5,open_bit=1]": "minecraft:barrel[facing=east,open=true]", + "minecraft:barrel[facing_direction=5,open_bit=0]": "minecraft:barrel[facing=east,open=false]", + "minecraft:barrel[facing_direction=3,open_bit=1]": "minecraft:barrel[facing=south,open=true]", + "minecraft:barrel[facing_direction=3,open_bit=0]": "minecraft:barrel[facing=south,open=false]", + "minecraft:barrel[facing_direction=4,open_bit=1]": "minecraft:barrel[facing=west,open=true]", + "minecraft:barrel[facing_direction=4,open_bit=0]": "minecraft:barrel[facing=west,open=false]", + "minecraft:barrel[facing_direction=1,open_bit=1]": "minecraft:barrel[facing=up,open=true]", + "minecraft:barrel[facing_direction=1,open_bit=0]": "minecraft:barrel[facing=up,open=false]", + "minecraft:barrel[facing_direction=0,open_bit=1]": "minecraft:barrel[facing=down,open=true]", + "minecraft:barrel[facing_direction=0,open_bit=0]": "minecraft:barrel[facing=down,open=false]", + "minecraft:lit_smoker[minecraft:cardinal_direction=north]": "minecraft:smoker[facing=north,lit=true]", + "minecraft:smoker[minecraft:cardinal_direction=north]": "minecraft:smoker[facing=north,lit=false]", + "minecraft:lit_smoker[minecraft:cardinal_direction=south]": "minecraft:smoker[facing=south,lit=true]", + "minecraft:smoker[minecraft:cardinal_direction=south]": "minecraft:smoker[facing=south,lit=false]", + "minecraft:lit_smoker[minecraft:cardinal_direction=west]": "minecraft:smoker[facing=west,lit=true]", + "minecraft:smoker[minecraft:cardinal_direction=west]": "minecraft:smoker[facing=west,lit=false]", + "minecraft:lit_smoker[minecraft:cardinal_direction=east]": "minecraft:smoker[facing=east,lit=true]", + "minecraft:smoker[minecraft:cardinal_direction=east]": "minecraft:smoker[facing=east,lit=false]", + "minecraft:lit_blast_furnace[minecraft:cardinal_direction=north]": "minecraft:blast_furnace[facing=north,lit=true]", + "minecraft:blast_furnace[minecraft:cardinal_direction=north]": "minecraft:blast_furnace[facing=north,lit=false]", + "minecraft:lit_blast_furnace[minecraft:cardinal_direction=south]": "minecraft:blast_furnace[facing=south,lit=true]", + "minecraft:blast_furnace[minecraft:cardinal_direction=south]": "minecraft:blast_furnace[facing=south,lit=false]", + "minecraft:lit_blast_furnace[minecraft:cardinal_direction=west]": "minecraft:blast_furnace[facing=west,lit=true]", + "minecraft:blast_furnace[minecraft:cardinal_direction=west]": "minecraft:blast_furnace[facing=west,lit=false]", + "minecraft:lit_blast_furnace[minecraft:cardinal_direction=east]": "minecraft:blast_furnace[facing=east,lit=true]", + "minecraft:blast_furnace[minecraft:cardinal_direction=east]": "minecraft:blast_furnace[facing=east,lit=false]", + "minecraft:cartography_table[]": "minecraft:cartography_table[]", + "minecraft:fletching_table[]": "minecraft:fletching_table[]", + "minecraft:grindstone[attachment=standing,direction=2]": "minecraft:grindstone[face=floor,facing=north]", + "minecraft:grindstone[attachment=standing,direction=0]": "minecraft:grindstone[face=floor,facing=south]", + "minecraft:grindstone[attachment=standing,direction=1]": "minecraft:grindstone[face=floor,facing=west]", + "minecraft:grindstone[attachment=standing,direction=3]": "minecraft:grindstone[face=floor,facing=east]", + "minecraft:grindstone[attachment=side,direction=2]": "minecraft:grindstone[face=wall,facing=north]", + "minecraft:grindstone[attachment=side,direction=0]": "minecraft:grindstone[face=wall,facing=south]", + "minecraft:grindstone[attachment=side,direction=1]": "minecraft:grindstone[face=wall,facing=west]", + "minecraft:grindstone[attachment=side,direction=3]": "minecraft:grindstone[face=wall,facing=east]", + "minecraft:grindstone[attachment=hanging,direction=2]": "minecraft:grindstone[face=ceiling,facing=north]", + "minecraft:grindstone[attachment=hanging,direction=0]": "minecraft:grindstone[face=ceiling,facing=south]", + "minecraft:grindstone[attachment=hanging,direction=1]": "minecraft:grindstone[face=ceiling,facing=west]", + "minecraft:grindstone[attachment=hanging,direction=3]": "minecraft:grindstone[face=ceiling,facing=east]", + "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=1]": "minecraft:lectern[facing=north,has_book=false,powered=true]", + "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=0]": "minecraft:lectern[facing=north,has_book=false,powered=false]", + "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=1]": "minecraft:lectern[facing=south,has_book=false,powered=true]", + "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=0]": "minecraft:lectern[facing=south,has_book=false,powered=false]", + "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=1]": "minecraft:lectern[facing=west,has_book=false,powered=true]", + "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=0]": "minecraft:lectern[facing=west,has_book=false,powered=false]", + "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=1]": "minecraft:lectern[facing=east,has_book=false,powered=true]", + "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=0]": "minecraft:lectern[facing=east,has_book=false,powered=false]", + "minecraft:smithing_table[]": "minecraft:smithing_table[]", + "minecraft:stonecutter_block[minecraft:cardinal_direction=north]": "minecraft:stonecutter[facing=north]", + "minecraft:stonecutter_block[minecraft:cardinal_direction=south]": "minecraft:stonecutter[facing=south]", + "minecraft:stonecutter_block[minecraft:cardinal_direction=west]": "minecraft:stonecutter[facing=west]", + "minecraft:stonecutter_block[minecraft:cardinal_direction=east]": "minecraft:stonecutter[facing=east]", + "minecraft:bell[attachment=standing,direction=0,toggle_bit=1]": "minecraft:bell[attachment=floor,facing=north,powered=true]", + "minecraft:bell[attachment=standing,direction=0,toggle_bit=0]": "minecraft:bell[attachment=floor,facing=north,powered=false]", + "minecraft:bell[attachment=standing,direction=2,toggle_bit=1]": "minecraft:bell[attachment=floor,facing=south,powered=true]", + "minecraft:bell[attachment=standing,direction=2,toggle_bit=0]": "minecraft:bell[attachment=floor,facing=south,powered=false]", + "minecraft:bell[attachment=standing,direction=3,toggle_bit=1]": "minecraft:bell[attachment=floor,facing=west,powered=true]", + "minecraft:bell[attachment=standing,direction=3,toggle_bit=0]": "minecraft:bell[attachment=floor,facing=west,powered=false]", + "minecraft:bell[attachment=standing,direction=1,toggle_bit=1]": "minecraft:bell[attachment=floor,facing=east,powered=true]", + "minecraft:bell[attachment=standing,direction=1,toggle_bit=0]": "minecraft:bell[attachment=floor,facing=east,powered=false]", + "minecraft:bell[attachment=hanging,direction=0,toggle_bit=1]": "minecraft:bell[attachment=ceiling,facing=north,powered=true]", + "minecraft:bell[attachment=hanging,direction=0,toggle_bit=0]": "minecraft:bell[attachment=ceiling,facing=north,powered=false]", + "minecraft:bell[attachment=hanging,direction=2,toggle_bit=1]": "minecraft:bell[attachment=ceiling,facing=south,powered=true]", + "minecraft:bell[attachment=hanging,direction=2,toggle_bit=0]": "minecraft:bell[attachment=ceiling,facing=south,powered=false]", + "minecraft:bell[attachment=hanging,direction=3,toggle_bit=1]": "minecraft:bell[attachment=ceiling,facing=west,powered=true]", + "minecraft:bell[attachment=hanging,direction=3,toggle_bit=0]": "minecraft:bell[attachment=ceiling,facing=west,powered=false]", + "minecraft:bell[attachment=hanging,direction=1,toggle_bit=1]": "minecraft:bell[attachment=ceiling,facing=east,powered=true]", + "minecraft:bell[attachment=hanging,direction=1,toggle_bit=0]": "minecraft:bell[attachment=ceiling,facing=east,powered=false]", + "minecraft:bell[attachment=side,direction=0,toggle_bit=1]": "minecraft:bell[attachment=single_wall,facing=north,powered=true]", + "minecraft:bell[attachment=side,direction=0,toggle_bit=0]": "minecraft:bell[attachment=single_wall,facing=north,powered=false]", + "minecraft:bell[attachment=side,direction=2,toggle_bit=1]": "minecraft:bell[attachment=single_wall,facing=south,powered=true]", + "minecraft:bell[attachment=side,direction=2,toggle_bit=0]": "minecraft:bell[attachment=single_wall,facing=south,powered=false]", + "minecraft:bell[attachment=side,direction=3,toggle_bit=1]": "minecraft:bell[attachment=single_wall,facing=west,powered=true]", + "minecraft:bell[attachment=side,direction=3,toggle_bit=0]": "minecraft:bell[attachment=single_wall,facing=west,powered=false]", + "minecraft:bell[attachment=side,direction=1,toggle_bit=1]": "minecraft:bell[attachment=single_wall,facing=east,powered=true]", + "minecraft:bell[attachment=side,direction=1,toggle_bit=0]": "minecraft:bell[attachment=single_wall,facing=east,powered=false]", + "minecraft:bell[attachment=multiple,direction=0,toggle_bit=1]": "minecraft:bell[attachment=double_wall,facing=north,powered=true]", + "minecraft:bell[attachment=multiple,direction=0,toggle_bit=0]": "minecraft:bell[attachment=double_wall,facing=north,powered=false]", + "minecraft:bell[attachment=multiple,direction=2,toggle_bit=1]": "minecraft:bell[attachment=double_wall,facing=south,powered=true]", + "minecraft:bell[attachment=multiple,direction=2,toggle_bit=0]": "minecraft:bell[attachment=double_wall,facing=south,powered=false]", + "minecraft:bell[attachment=multiple,direction=3,toggle_bit=1]": "minecraft:bell[attachment=double_wall,facing=west,powered=true]", + "minecraft:bell[attachment=multiple,direction=3,toggle_bit=0]": "minecraft:bell[attachment=double_wall,facing=west,powered=false]", + "minecraft:bell[attachment=multiple,direction=1,toggle_bit=1]": "minecraft:bell[attachment=double_wall,facing=east,powered=true]", + "minecraft:bell[attachment=multiple,direction=1,toggle_bit=0]": "minecraft:bell[attachment=double_wall,facing=east,powered=false]", + "minecraft:lantern[hanging=1]": "minecraft:lantern[hanging=true,waterlogged=false]", + "minecraft:lantern[hanging=0]": "minecraft:lantern[hanging=false,waterlogged=false]", + "minecraft:soul_lantern[hanging=1]": "minecraft:soul_lantern[hanging=true,waterlogged=false]", + "minecraft:soul_lantern[hanging=0]": "minecraft:soul_lantern[hanging=false,waterlogged=false]", + "minecraft:campfire[extinguished=0,minecraft:cardinal_direction=north]": "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]", + "minecraft:campfire[extinguished=1,minecraft:cardinal_direction=north]": "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]", + "minecraft:campfire[extinguished=0,minecraft:cardinal_direction=south]": "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]", + "minecraft:campfire[extinguished=1,minecraft:cardinal_direction=south]": "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]", + "minecraft:campfire[extinguished=0,minecraft:cardinal_direction=west]": "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]", + "minecraft:campfire[extinguished=1,minecraft:cardinal_direction=west]": "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]", + "minecraft:campfire[extinguished=0,minecraft:cardinal_direction=east]": "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]", + "minecraft:campfire[extinguished=1,minecraft:cardinal_direction=east]": "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]", + "minecraft:soul_campfire[extinguished=0,minecraft:cardinal_direction=north]": "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]", + "minecraft:soul_campfire[extinguished=1,minecraft:cardinal_direction=north]": "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]", + "minecraft:soul_campfire[extinguished=0,minecraft:cardinal_direction=south]": "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]", + "minecraft:soul_campfire[extinguished=1,minecraft:cardinal_direction=south]": "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]", + "minecraft:soul_campfire[extinguished=0,minecraft:cardinal_direction=west]": "minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]", + "minecraft:soul_campfire[extinguished=1,minecraft:cardinal_direction=west]": "minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]", + "minecraft:soul_campfire[extinguished=0,minecraft:cardinal_direction=east]": "minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]", + "minecraft:soul_campfire[extinguished=1,minecraft:cardinal_direction=east]": "minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]", + "minecraft:sweet_berry_bush[growth=0]": "minecraft:sweet_berry_bush[age=0]", + "minecraft:sweet_berry_bush[growth=1]": "minecraft:sweet_berry_bush[age=1]", + "minecraft:sweet_berry_bush[growth=2]": "minecraft:sweet_berry_bush[age=2]", + "minecraft:sweet_berry_bush[growth=3]": "minecraft:sweet_berry_bush[age=3]", + "minecraft:warped_stem[pillar_axis=x]": "minecraft:warped_stem[axis=x]", + "minecraft:warped_stem[pillar_axis=y]": "minecraft:warped_stem[axis=y]", + "minecraft:warped_stem[pillar_axis=z]": "minecraft:warped_stem[axis=z]", + "minecraft:stripped_warped_stem[pillar_axis=x]": "minecraft:stripped_warped_stem[axis=x]", + "minecraft:stripped_warped_stem[pillar_axis=y]": "minecraft:stripped_warped_stem[axis=y]", + "minecraft:stripped_warped_stem[pillar_axis=z]": "minecraft:stripped_warped_stem[axis=z]", + "minecraft:warped_hyphae[pillar_axis=x]": "minecraft:warped_hyphae[axis=x]", + "minecraft:warped_hyphae[pillar_axis=y]": "minecraft:warped_hyphae[axis=y]", + "minecraft:warped_hyphae[pillar_axis=z]": "minecraft:warped_hyphae[axis=z]", + "minecraft:stripped_warped_hyphae[pillar_axis=x]": "minecraft:stripped_warped_hyphae[axis=x]", + "minecraft:stripped_warped_hyphae[pillar_axis=y]": "minecraft:stripped_warped_hyphae[axis=y]", + "minecraft:stripped_warped_hyphae[pillar_axis=z]": "minecraft:stripped_warped_hyphae[axis=z]", + "minecraft:warped_nylium[]": "minecraft:warped_nylium[]", + "minecraft:warped_fungus[]": "minecraft:warped_fungus[]", + "minecraft:warped_wart_block[]": "minecraft:warped_wart_block[]", + "minecraft:warped_roots[]": "minecraft:warped_roots[]", + "minecraft:nether_sprouts[]": "minecraft:nether_sprouts[]", + "minecraft:crimson_stem[pillar_axis=x]": "minecraft:crimson_stem[axis=x]", + "minecraft:crimson_stem[pillar_axis=y]": "minecraft:crimson_stem[axis=y]", + "minecraft:crimson_stem[pillar_axis=z]": "minecraft:crimson_stem[axis=z]", + "minecraft:stripped_crimson_stem[pillar_axis=x]": "minecraft:stripped_crimson_stem[axis=x]", + "minecraft:stripped_crimson_stem[pillar_axis=y]": "minecraft:stripped_crimson_stem[axis=y]", + "minecraft:stripped_crimson_stem[pillar_axis=z]": "minecraft:stripped_crimson_stem[axis=z]", + "minecraft:crimson_hyphae[pillar_axis=x]": "minecraft:crimson_hyphae[axis=x]", + "minecraft:crimson_hyphae[pillar_axis=y]": "minecraft:crimson_hyphae[axis=y]", + "minecraft:crimson_hyphae[pillar_axis=z]": "minecraft:crimson_hyphae[axis=z]", + "minecraft:stripped_crimson_hyphae[pillar_axis=x]": "minecraft:stripped_crimson_hyphae[axis=x]", + "minecraft:stripped_crimson_hyphae[pillar_axis=y]": "minecraft:stripped_crimson_hyphae[axis=y]", + "minecraft:stripped_crimson_hyphae[pillar_axis=z]": "minecraft:stripped_crimson_hyphae[axis=z]", + "minecraft:crimson_nylium[]": "minecraft:crimson_nylium[]", + "minecraft:crimson_fungus[]": "minecraft:crimson_fungus[]", + "minecraft:shroomlight[]": "minecraft:shroomlight[]", + "minecraft:weeping_vines[weeping_vines_age=0]": "minecraft:weeping_vines_plant[]", + "minecraft:weeping_vines[weeping_vines_age=1]": "minecraft:weeping_vines[age=1]", + "minecraft:weeping_vines[weeping_vines_age=2]": "minecraft:weeping_vines[age=2]", + "minecraft:weeping_vines[weeping_vines_age=3]": "minecraft:weeping_vines[age=3]", + "minecraft:weeping_vines[weeping_vines_age=4]": "minecraft:weeping_vines[age=4]", + "minecraft:weeping_vines[weeping_vines_age=5]": "minecraft:weeping_vines[age=5]", + "minecraft:weeping_vines[weeping_vines_age=6]": "minecraft:weeping_vines[age=6]", + "minecraft:weeping_vines[weeping_vines_age=7]": "minecraft:weeping_vines[age=7]", + "minecraft:weeping_vines[weeping_vines_age=8]": "minecraft:weeping_vines[age=8]", + "minecraft:weeping_vines[weeping_vines_age=9]": "minecraft:weeping_vines[age=9]", + "minecraft:weeping_vines[weeping_vines_age=10]": "minecraft:weeping_vines[age=10]", + "minecraft:weeping_vines[weeping_vines_age=11]": "minecraft:weeping_vines[age=11]", + "minecraft:weeping_vines[weeping_vines_age=12]": "minecraft:weeping_vines[age=12]", + "minecraft:weeping_vines[weeping_vines_age=13]": "minecraft:weeping_vines[age=13]", + "minecraft:weeping_vines[weeping_vines_age=14]": "minecraft:weeping_vines[age=14]", + "minecraft:weeping_vines[weeping_vines_age=15]": "minecraft:weeping_vines[age=15]", + "minecraft:weeping_vines[weeping_vines_age=16]": "minecraft:weeping_vines[age=16]", + "minecraft:weeping_vines[weeping_vines_age=17]": "minecraft:weeping_vines[age=17]", + "minecraft:weeping_vines[weeping_vines_age=18]": "minecraft:weeping_vines[age=18]", + "minecraft:weeping_vines[weeping_vines_age=19]": "minecraft:weeping_vines[age=19]", + "minecraft:weeping_vines[weeping_vines_age=20]": "minecraft:weeping_vines[age=20]", + "minecraft:weeping_vines[weeping_vines_age=21]": "minecraft:weeping_vines[age=21]", + "minecraft:weeping_vines[weeping_vines_age=22]": "minecraft:weeping_vines[age=22]", + "minecraft:weeping_vines[weeping_vines_age=23]": "minecraft:weeping_vines[age=23]", + "minecraft:weeping_vines[weeping_vines_age=24]": "minecraft:weeping_vines[age=24]", + "minecraft:weeping_vines[weeping_vines_age=25]": "minecraft:weeping_vines[age=25]", + "minecraft:twisting_vines[twisting_vines_age=0]": "minecraft:twisting_vines_plant[]", + "minecraft:twisting_vines[twisting_vines_age=1]": "minecraft:twisting_vines[age=1]", + "minecraft:twisting_vines[twisting_vines_age=2]": "minecraft:twisting_vines[age=2]", + "minecraft:twisting_vines[twisting_vines_age=3]": "minecraft:twisting_vines[age=3]", + "minecraft:twisting_vines[twisting_vines_age=4]": "minecraft:twisting_vines[age=4]", + "minecraft:twisting_vines[twisting_vines_age=5]": "minecraft:twisting_vines[age=5]", + "minecraft:twisting_vines[twisting_vines_age=6]": "minecraft:twisting_vines[age=6]", + "minecraft:twisting_vines[twisting_vines_age=7]": "minecraft:twisting_vines[age=7]", + "minecraft:twisting_vines[twisting_vines_age=8]": "minecraft:twisting_vines[age=8]", + "minecraft:twisting_vines[twisting_vines_age=9]": "minecraft:twisting_vines[age=9]", + "minecraft:twisting_vines[twisting_vines_age=10]": "minecraft:twisting_vines[age=10]", + "minecraft:twisting_vines[twisting_vines_age=11]": "minecraft:twisting_vines[age=11]", + "minecraft:twisting_vines[twisting_vines_age=12]": "minecraft:twisting_vines[age=12]", + "minecraft:twisting_vines[twisting_vines_age=13]": "minecraft:twisting_vines[age=13]", + "minecraft:twisting_vines[twisting_vines_age=14]": "minecraft:twisting_vines[age=14]", + "minecraft:twisting_vines[twisting_vines_age=15]": "minecraft:twisting_vines[age=15]", + "minecraft:twisting_vines[twisting_vines_age=16]": "minecraft:twisting_vines[age=16]", + "minecraft:twisting_vines[twisting_vines_age=17]": "minecraft:twisting_vines[age=17]", + "minecraft:twisting_vines[twisting_vines_age=18]": "minecraft:twisting_vines[age=18]", + "minecraft:twisting_vines[twisting_vines_age=19]": "minecraft:twisting_vines[age=19]", + "minecraft:twisting_vines[twisting_vines_age=20]": "minecraft:twisting_vines[age=20]", + "minecraft:twisting_vines[twisting_vines_age=21]": "minecraft:twisting_vines[age=21]", + "minecraft:twisting_vines[twisting_vines_age=22]": "minecraft:twisting_vines[age=22]", + "minecraft:twisting_vines[twisting_vines_age=23]": "minecraft:twisting_vines[age=23]", + "minecraft:twisting_vines[twisting_vines_age=24]": "minecraft:twisting_vines[age=24]", + "minecraft:twisting_vines[twisting_vines_age=25]": "minecraft:twisting_vines[age=25]", + "minecraft:crimson_roots[]": "minecraft:crimson_roots[]", + "minecraft:crimson_planks[]": "minecraft:crimson_planks[]", + "minecraft:warped_planks[]": "minecraft:warped_planks[]", + "minecraft:crimson_slab[minecraft:vertical_half=top]": "minecraft:crimson_slab[type=top,waterlogged=false]", + "minecraft:crimson_slab[minecraft:vertical_half=bottom]": "minecraft:crimson_slab[type=bottom,waterlogged=false]", + "minecraft:crimson_double_slab[minecraft:vertical_half=bottom]": "minecraft:crimson_slab[type=double,waterlogged=false]", + "minecraft:warped_slab[minecraft:vertical_half=top]": "minecraft:warped_slab[type=top,waterlogged=false]", + "minecraft:warped_slab[minecraft:vertical_half=bottom]": "minecraft:warped_slab[type=bottom,waterlogged=false]", + "minecraft:warped_double_slab[minecraft:vertical_half=bottom]": "minecraft:warped_slab[type=double,waterlogged=false]", + "minecraft:crimson_pressure_plate[redstone_signal=15]": "minecraft:crimson_pressure_plate[powered=true]", + "minecraft:crimson_pressure_plate[redstone_signal=0]": "minecraft:crimson_pressure_plate[powered=false]", + "minecraft:warped_pressure_plate[redstone_signal=15]": "minecraft:warped_pressure_plate[powered=true]", + "minecraft:warped_pressure_plate[redstone_signal=0]": "minecraft:warped_pressure_plate[powered=false]", + "minecraft:crimson_fence[]": "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:warped_fence[]": "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=false]", + "minecraft:crimson_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:crimson_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:warped_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:crimson_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:crimson_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:crimson_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:crimson_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:crimson_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:crimson_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:crimson_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:crimson_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:crimson_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:crimson_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:crimson_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:crimson_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:crimson_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:crimson_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:crimson_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:crimson_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:warped_fence_gate[direction=2,in_wall_bit=1,open_bit=1]": "minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=false]", + "minecraft:warped_fence_gate[direction=2,in_wall_bit=1,open_bit=0]": "minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=false]", + "minecraft:warped_fence_gate[direction=2,in_wall_bit=0,open_bit=1]": "minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=false]", + "minecraft:warped_fence_gate[direction=2,in_wall_bit=0,open_bit=0]": "minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=false]", + "minecraft:warped_fence_gate[direction=0,in_wall_bit=1,open_bit=1]": "minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=false]", + "minecraft:warped_fence_gate[direction=0,in_wall_bit=1,open_bit=0]": "minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=false]", + "minecraft:warped_fence_gate[direction=0,in_wall_bit=0,open_bit=1]": "minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=false]", + "minecraft:warped_fence_gate[direction=0,in_wall_bit=0,open_bit=0]": "minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=false]", + "minecraft:warped_fence_gate[direction=1,in_wall_bit=1,open_bit=1]": "minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=false]", + "minecraft:warped_fence_gate[direction=1,in_wall_bit=1,open_bit=0]": "minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=false]", + "minecraft:warped_fence_gate[direction=1,in_wall_bit=0,open_bit=1]": "minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=false]", + "minecraft:warped_fence_gate[direction=1,in_wall_bit=0,open_bit=0]": "minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=false]", + "minecraft:warped_fence_gate[direction=3,in_wall_bit=1,open_bit=1]": "minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=false]", + "minecraft:warped_fence_gate[direction=3,in_wall_bit=1,open_bit=0]": "minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=false]", + "minecraft:warped_fence_gate[direction=3,in_wall_bit=0,open_bit=1]": "minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=false]", + "minecraft:warped_fence_gate[direction=3,in_wall_bit=0,open_bit=0]": "minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=false]", + "minecraft:crimson_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:crimson_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:crimson_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:crimson_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:crimson_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:crimson_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:crimson_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:crimson_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:warped_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:warped_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:warped_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:warped_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:warped_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:warped_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:warped_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:warped_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:crimson_button[button_pressed_bit=1,facing_direction=1]": "minecraft:crimson_button[face=floor,facing=east,powered=true]", + "minecraft:crimson_button[button_pressed_bit=0,facing_direction=1]": "minecraft:crimson_button[face=floor,facing=east,powered=false]", + "minecraft:crimson_button[button_pressed_bit=1,facing_direction=2]": "minecraft:crimson_button[face=wall,facing=north,powered=true]", + "minecraft:crimson_button[button_pressed_bit=0,facing_direction=2]": "minecraft:crimson_button[face=wall,facing=north,powered=false]", + "minecraft:crimson_button[button_pressed_bit=1,facing_direction=3]": "minecraft:crimson_button[face=wall,facing=south,powered=true]", + "minecraft:crimson_button[button_pressed_bit=0,facing_direction=3]": "minecraft:crimson_button[face=wall,facing=south,powered=false]", + "minecraft:crimson_button[button_pressed_bit=1,facing_direction=4]": "minecraft:crimson_button[face=wall,facing=west,powered=true]", + "minecraft:crimson_button[button_pressed_bit=0,facing_direction=4]": "minecraft:crimson_button[face=wall,facing=west,powered=false]", + "minecraft:crimson_button[button_pressed_bit=1,facing_direction=5]": "minecraft:crimson_button[face=wall,facing=east,powered=true]", + "minecraft:crimson_button[button_pressed_bit=0,facing_direction=5]": "minecraft:crimson_button[face=wall,facing=east,powered=false]", + "minecraft:crimson_button[button_pressed_bit=1,facing_direction=0]": "minecraft:crimson_button[face=ceiling,facing=east,powered=true]", + "minecraft:crimson_button[button_pressed_bit=0,facing_direction=0]": "minecraft:crimson_button[face=ceiling,facing=east,powered=false]", + "minecraft:warped_button[button_pressed_bit=1,facing_direction=1]": "minecraft:warped_button[face=floor,facing=east,powered=true]", + "minecraft:warped_button[button_pressed_bit=0,facing_direction=1]": "minecraft:warped_button[face=floor,facing=east,powered=false]", + "minecraft:warped_button[button_pressed_bit=1,facing_direction=2]": "minecraft:warped_button[face=wall,facing=north,powered=true]", + "minecraft:warped_button[button_pressed_bit=0,facing_direction=2]": "minecraft:warped_button[face=wall,facing=north,powered=false]", + "minecraft:warped_button[button_pressed_bit=1,facing_direction=3]": "minecraft:warped_button[face=wall,facing=south,powered=true]", + "minecraft:warped_button[button_pressed_bit=0,facing_direction=3]": "minecraft:warped_button[face=wall,facing=south,powered=false]", + "minecraft:warped_button[button_pressed_bit=1,facing_direction=4]": "minecraft:warped_button[face=wall,facing=west,powered=true]", + "minecraft:warped_button[button_pressed_bit=0,facing_direction=4]": "minecraft:warped_button[face=wall,facing=west,powered=false]", + "minecraft:warped_button[button_pressed_bit=1,facing_direction=5]": "minecraft:warped_button[face=wall,facing=east,powered=true]", + "minecraft:warped_button[button_pressed_bit=0,facing_direction=5]": "minecraft:warped_button[face=wall,facing=east,powered=false]", + "minecraft:warped_button[button_pressed_bit=1,facing_direction=0]": "minecraft:warped_button[face=ceiling,facing=east,powered=true]", + "minecraft:warped_button[button_pressed_bit=0,facing_direction=0]": "minecraft:warped_button[face=ceiling,facing=east,powered=false]", + "minecraft:crimson_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:crimson_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:crimson_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:crimson_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:crimson_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:crimson_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:crimson_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:crimson_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:crimson_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:crimson_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:crimson_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:crimson_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:crimson_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:crimson_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:crimson_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:crimson_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:crimson_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:crimson_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:crimson_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:crimson_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:crimson_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:crimson_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:crimson_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:crimson_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:crimson_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:crimson_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:crimson_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:crimson_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:crimson_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:crimson_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:crimson_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:crimson_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:warped_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:warped_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:warped_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:warped_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:warped_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:warped_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:warped_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:warped_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:warped_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:warped_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:warped_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:warped_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:warped_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:warped_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:warped_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:warped_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:warped_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:warped_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:warped_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:warped_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:warped_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:warped_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:warped_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:warped_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:warped_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:warped_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:warped_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:warped_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:warped_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:warped_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:warped_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:warped_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=0]": "minecraft:crimson_sign[rotation=0,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=1]": "minecraft:crimson_sign[rotation=1,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=2]": "minecraft:crimson_sign[rotation=2,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=3]": "minecraft:crimson_sign[rotation=3,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=4]": "minecraft:crimson_sign[rotation=4,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=5]": "minecraft:crimson_sign[rotation=5,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=6]": "minecraft:crimson_sign[rotation=6,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=7]": "minecraft:crimson_sign[rotation=7,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=8]": "minecraft:crimson_sign[rotation=8,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=9]": "minecraft:crimson_sign[rotation=9,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=10]": "minecraft:crimson_sign[rotation=10,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=11]": "minecraft:crimson_sign[rotation=11,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=12]": "minecraft:crimson_sign[rotation=12,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=13]": "minecraft:crimson_sign[rotation=13,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=14]": "minecraft:crimson_sign[rotation=14,waterlogged=false]", + "minecraft:crimson_standing_sign[ground_sign_direction=15]": "minecraft:crimson_sign[rotation=15,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=0]": "minecraft:warped_sign[rotation=0,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=1]": "minecraft:warped_sign[rotation=1,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=2]": "minecraft:warped_sign[rotation=2,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=3]": "minecraft:warped_sign[rotation=3,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=4]": "minecraft:warped_sign[rotation=4,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=5]": "minecraft:warped_sign[rotation=5,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=6]": "minecraft:warped_sign[rotation=6,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=7]": "minecraft:warped_sign[rotation=7,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=8]": "minecraft:warped_sign[rotation=8,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=9]": "minecraft:warped_sign[rotation=9,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=10]": "minecraft:warped_sign[rotation=10,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=11]": "minecraft:warped_sign[rotation=11,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=12]": "minecraft:warped_sign[rotation=12,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=13]": "minecraft:warped_sign[rotation=13,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=14]": "minecraft:warped_sign[rotation=14,waterlogged=false]", + "minecraft:warped_standing_sign[ground_sign_direction=15]": "minecraft:warped_sign[rotation=15,waterlogged=false]", + "minecraft:crimson_wall_sign[facing_direction=2]": "minecraft:crimson_wall_sign[facing=north,waterlogged=false]", + "minecraft:crimson_wall_sign[facing_direction=3]": "minecraft:crimson_wall_sign[facing=south,waterlogged=false]", + "minecraft:crimson_wall_sign[facing_direction=4]": "minecraft:crimson_wall_sign[facing=west,waterlogged=false]", + "minecraft:crimson_wall_sign[facing_direction=5]": "minecraft:crimson_wall_sign[facing=east,waterlogged=false]", + "minecraft:warped_wall_sign[facing_direction=2]": "minecraft:warped_wall_sign[facing=north,waterlogged=false]", + "minecraft:warped_wall_sign[facing_direction=3]": "minecraft:warped_wall_sign[facing=south,waterlogged=false]", + "minecraft:warped_wall_sign[facing_direction=4]": "minecraft:warped_wall_sign[facing=west,waterlogged=false]", + "minecraft:warped_wall_sign[facing_direction=5]": "minecraft:warped_wall_sign[facing=east,waterlogged=false]", + "minecraft:structure_block[structure_block_type=save]": "minecraft:structure_block[mode=save]", + "minecraft:structure_block[structure_block_type=load]": "minecraft:structure_block[mode=load]", + "minecraft:structure_block[structure_block_type=corner]": "minecraft:structure_block[mode=corner]", + "minecraft:structure_block[structure_block_type=data]": "minecraft:structure_block[mode=data]", + "minecraft:jigsaw[facing_direction=0,rotation=0]": "minecraft:jigsaw[orientation=south_up]", + "minecraft:composter[composter_fill_level=0]": "minecraft:composter[level=0]", + "minecraft:composter[composter_fill_level=1]": "minecraft:composter[level=1]", + "minecraft:composter[composter_fill_level=2]": "minecraft:composter[level=2]", + "minecraft:composter[composter_fill_level=3]": "minecraft:composter[level=3]", + "minecraft:composter[composter_fill_level=4]": "minecraft:composter[level=4]", + "minecraft:composter[composter_fill_level=5]": "minecraft:composter[level=5]", + "minecraft:composter[composter_fill_level=6]": "minecraft:composter[level=6]", + "minecraft:composter[composter_fill_level=7]": "minecraft:composter[level=7]", + "minecraft:composter[composter_fill_level=8]": "minecraft:composter[level=8]", + "minecraft:target[]": "minecraft:target[power=15]", + "minecraft:bee_nest[direction=2,honey_level=0]": "minecraft:bee_nest[facing=north,honey_level=0]", + "minecraft:bee_nest[direction=2,honey_level=1]": "minecraft:bee_nest[facing=north,honey_level=1]", + "minecraft:bee_nest[direction=2,honey_level=2]": "minecraft:bee_nest[facing=north,honey_level=2]", + "minecraft:bee_nest[direction=2,honey_level=3]": "minecraft:bee_nest[facing=north,honey_level=3]", + "minecraft:bee_nest[direction=2,honey_level=4]": "minecraft:bee_nest[facing=north,honey_level=4]", + "minecraft:bee_nest[direction=2,honey_level=5]": "minecraft:bee_nest[facing=north,honey_level=5]", + "minecraft:bee_nest[direction=0,honey_level=0]": "minecraft:bee_nest[facing=south,honey_level=0]", + "minecraft:bee_nest[direction=0,honey_level=1]": "minecraft:bee_nest[facing=south,honey_level=1]", + "minecraft:bee_nest[direction=0,honey_level=2]": "minecraft:bee_nest[facing=south,honey_level=2]", + "minecraft:bee_nest[direction=0,honey_level=3]": "minecraft:bee_nest[facing=south,honey_level=3]", + "minecraft:bee_nest[direction=0,honey_level=4]": "minecraft:bee_nest[facing=south,honey_level=4]", + "minecraft:bee_nest[direction=0,honey_level=5]": "minecraft:bee_nest[facing=south,honey_level=5]", + "minecraft:bee_nest[direction=1,honey_level=0]": "minecraft:bee_nest[facing=west,honey_level=0]", + "minecraft:bee_nest[direction=1,honey_level=1]": "minecraft:bee_nest[facing=west,honey_level=1]", + "minecraft:bee_nest[direction=1,honey_level=2]": "minecraft:bee_nest[facing=west,honey_level=2]", + "minecraft:bee_nest[direction=1,honey_level=3]": "minecraft:bee_nest[facing=west,honey_level=3]", + "minecraft:bee_nest[direction=1,honey_level=4]": "minecraft:bee_nest[facing=west,honey_level=4]", + "minecraft:bee_nest[direction=1,honey_level=5]": "minecraft:bee_nest[facing=west,honey_level=5]", + "minecraft:bee_nest[direction=3,honey_level=0]": "minecraft:bee_nest[facing=east,honey_level=0]", + "minecraft:bee_nest[direction=3,honey_level=1]": "minecraft:bee_nest[facing=east,honey_level=1]", + "minecraft:bee_nest[direction=3,honey_level=2]": "minecraft:bee_nest[facing=east,honey_level=2]", + "minecraft:bee_nest[direction=3,honey_level=3]": "minecraft:bee_nest[facing=east,honey_level=3]", + "minecraft:bee_nest[direction=3,honey_level=4]": "minecraft:bee_nest[facing=east,honey_level=4]", + "minecraft:bee_nest[direction=3,honey_level=5]": "minecraft:bee_nest[facing=east,honey_level=5]", + "minecraft:beehive[direction=2,honey_level=0]": "minecraft:beehive[facing=north,honey_level=0]", + "minecraft:beehive[direction=2,honey_level=1]": "minecraft:beehive[facing=north,honey_level=1]", + "minecraft:beehive[direction=2,honey_level=2]": "minecraft:beehive[facing=north,honey_level=2]", + "minecraft:beehive[direction=2,honey_level=3]": "minecraft:beehive[facing=north,honey_level=3]", + "minecraft:beehive[direction=2,honey_level=4]": "minecraft:beehive[facing=north,honey_level=4]", + "minecraft:beehive[direction=2,honey_level=5]": "minecraft:beehive[facing=north,honey_level=5]", + "minecraft:beehive[direction=0,honey_level=0]": "minecraft:beehive[facing=south,honey_level=0]", + "minecraft:beehive[direction=0,honey_level=1]": "minecraft:beehive[facing=south,honey_level=1]", + "minecraft:beehive[direction=0,honey_level=2]": "minecraft:beehive[facing=south,honey_level=2]", + "minecraft:beehive[direction=0,honey_level=3]": "minecraft:beehive[facing=south,honey_level=3]", + "minecraft:beehive[direction=0,honey_level=4]": "minecraft:beehive[facing=south,honey_level=4]", + "minecraft:beehive[direction=0,honey_level=5]": "minecraft:beehive[facing=south,honey_level=5]", + "minecraft:beehive[direction=1,honey_level=0]": "minecraft:beehive[facing=west,honey_level=0]", + "minecraft:beehive[direction=1,honey_level=1]": "minecraft:beehive[facing=west,honey_level=1]", + "minecraft:beehive[direction=1,honey_level=2]": "minecraft:beehive[facing=west,honey_level=2]", + "minecraft:beehive[direction=1,honey_level=3]": "minecraft:beehive[facing=west,honey_level=3]", + "minecraft:beehive[direction=1,honey_level=4]": "minecraft:beehive[facing=west,honey_level=4]", + "minecraft:beehive[direction=1,honey_level=5]": "minecraft:beehive[facing=west,honey_level=5]", + "minecraft:beehive[direction=3,honey_level=0]": "minecraft:beehive[facing=east,honey_level=0]", + "minecraft:beehive[direction=3,honey_level=1]": "minecraft:beehive[facing=east,honey_level=1]", + "minecraft:beehive[direction=3,honey_level=2]": "minecraft:beehive[facing=east,honey_level=2]", + "minecraft:beehive[direction=3,honey_level=3]": "minecraft:beehive[facing=east,honey_level=3]", + "minecraft:beehive[direction=3,honey_level=4]": "minecraft:beehive[facing=east,honey_level=4]", + "minecraft:beehive[direction=3,honey_level=5]": "minecraft:beehive[facing=east,honey_level=5]", + "minecraft:honey_block[]": "minecraft:honey_block[]", + "minecraft:honeycomb_block[]": "minecraft:honeycomb_block[]", + "minecraft:netherite_block[]": "minecraft:netherite_block[]", + "minecraft:ancient_debris[]": "minecraft:ancient_debris[]", + "minecraft:crying_obsidian[]": "minecraft:crying_obsidian[]", + "minecraft:respawn_anchor[respawn_anchor_charge=0]": "minecraft:respawn_anchor[charges=0]", + "minecraft:respawn_anchor[respawn_anchor_charge=1]": "minecraft:respawn_anchor[charges=1]", + "minecraft:respawn_anchor[respawn_anchor_charge=2]": "minecraft:respawn_anchor[charges=2]", + "minecraft:respawn_anchor[respawn_anchor_charge=3]": "minecraft:respawn_anchor[charges=3]", + "minecraft:respawn_anchor[respawn_anchor_charge=4]": "minecraft:respawn_anchor[charges=4]", + "minecraft:lodestone[]": "minecraft:lodestone[]", + "minecraft:blackstone[]": "minecraft:blackstone[]", + "minecraft:blackstone_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:blackstone_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:blackstone_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:blackstone_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:blackstone_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:blackstone_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:blackstone_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:blackstone_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:blackstone_slab[minecraft:vertical_half=top]": "minecraft:blackstone_slab[type=top,waterlogged=false]", + "minecraft:blackstone_slab[minecraft:vertical_half=bottom]": "minecraft:blackstone_slab[type=bottom,waterlogged=false]", + "minecraft:blackstone_double_slab[minecraft:vertical_half=bottom]": "minecraft:blackstone_slab[type=double,waterlogged=false]", + "minecraft:polished_blackstone[]": "minecraft:polished_blackstone[]", + "minecraft:polished_blackstone_bricks[]": "minecraft:polished_blackstone_bricks[]", + "minecraft:cracked_polished_blackstone_bricks[]": "minecraft:cracked_polished_blackstone_bricks[]", + "minecraft:chiseled_polished_blackstone[]": "minecraft:chiseled_polished_blackstone[]", + "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=top]": "minecraft:polished_blackstone_brick_slab[type=top,waterlogged=false]", + "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=bottom]": "minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=false]", + "minecraft:polished_blackstone_brick_double_slab[minecraft:vertical_half=bottom]": "minecraft:polished_blackstone_brick_slab[type=double,waterlogged=false]", + "minecraft:polished_blackstone_brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:gilded_blackstone[]": "minecraft:gilded_blackstone[]", + "minecraft:polished_blackstone_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_blackstone_slab[minecraft:vertical_half=top]": "minecraft:polished_blackstone_slab[type=top,waterlogged=false]", + "minecraft:polished_blackstone_slab[minecraft:vertical_half=bottom]": "minecraft:polished_blackstone_slab[type=bottom,waterlogged=false]", + "minecraft:polished_blackstone_double_slab[minecraft:vertical_half=bottom]": "minecraft:polished_blackstone_slab[type=double,waterlogged=false]", + "minecraft:polished_blackstone_pressure_plate[redstone_signal=15]": "minecraft:polished_blackstone_pressure_plate[powered=true]", + "minecraft:polished_blackstone_pressure_plate[redstone_signal=0]": "minecraft:polished_blackstone_pressure_plate[powered=false]", + "minecraft:polished_blackstone_button[button_pressed_bit=1,facing_direction=1]": "minecraft:polished_blackstone_button[face=floor,facing=east,powered=true]", + "minecraft:polished_blackstone_button[button_pressed_bit=0,facing_direction=1]": "minecraft:polished_blackstone_button[face=floor,facing=east,powered=false]", + "minecraft:polished_blackstone_button[button_pressed_bit=1,facing_direction=2]": "minecraft:polished_blackstone_button[face=wall,facing=north,powered=true]", + "minecraft:polished_blackstone_button[button_pressed_bit=0,facing_direction=2]": "minecraft:polished_blackstone_button[face=wall,facing=north,powered=false]", + "minecraft:polished_blackstone_button[button_pressed_bit=1,facing_direction=3]": "minecraft:polished_blackstone_button[face=wall,facing=south,powered=true]", + "minecraft:polished_blackstone_button[button_pressed_bit=0,facing_direction=3]": "minecraft:polished_blackstone_button[face=wall,facing=south,powered=false]", + "minecraft:polished_blackstone_button[button_pressed_bit=1,facing_direction=4]": "minecraft:polished_blackstone_button[face=wall,facing=west,powered=true]", + "minecraft:polished_blackstone_button[button_pressed_bit=0,facing_direction=4]": "minecraft:polished_blackstone_button[face=wall,facing=west,powered=false]", + "minecraft:polished_blackstone_button[button_pressed_bit=1,facing_direction=5]": "minecraft:polished_blackstone_button[face=wall,facing=east,powered=true]", + "minecraft:polished_blackstone_button[button_pressed_bit=0,facing_direction=5]": "minecraft:polished_blackstone_button[face=wall,facing=east,powered=false]", + "minecraft:polished_blackstone_button[button_pressed_bit=1,facing_direction=0]": "minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=true]", + "minecraft:polished_blackstone_button[button_pressed_bit=0,facing_direction=0]": "minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=false]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:chiseled_nether_bricks[]": "minecraft:chiseled_nether_bricks[]", + "minecraft:cracked_nether_bricks[]": "minecraft:cracked_nether_bricks[]", + "minecraft:quartz_bricks[]": "minecraft:quartz_bricks[]", + "minecraft:candle[candles=0,lit=1]": "minecraft:candle[candles=1,lit=true,waterlogged=false]", + "minecraft:candle[candles=0,lit=0]": "minecraft:candle[candles=1,lit=false,waterlogged=false]", + "minecraft:candle[candles=1,lit=1]": "minecraft:candle[candles=2,lit=true,waterlogged=false]", + "minecraft:candle[candles=1,lit=0]": "minecraft:candle[candles=2,lit=false,waterlogged=false]", + "minecraft:candle[candles=2,lit=1]": "minecraft:candle[candles=3,lit=true,waterlogged=false]", + "minecraft:candle[candles=2,lit=0]": "minecraft:candle[candles=3,lit=false,waterlogged=false]", + "minecraft:candle[candles=3,lit=1]": "minecraft:candle[candles=4,lit=true,waterlogged=false]", + "minecraft:candle[candles=3,lit=0]": "minecraft:candle[candles=4,lit=false,waterlogged=false]", + "minecraft:white_candle[candles=0,lit=1]": "minecraft:white_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:white_candle[candles=0,lit=0]": "minecraft:white_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:white_candle[candles=1,lit=1]": "minecraft:white_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:white_candle[candles=1,lit=0]": "minecraft:white_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:white_candle[candles=2,lit=1]": "minecraft:white_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:white_candle[candles=2,lit=0]": "minecraft:white_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:white_candle[candles=3,lit=1]": "minecraft:white_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:white_candle[candles=3,lit=0]": "minecraft:white_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:orange_candle[candles=0,lit=1]": "minecraft:orange_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:orange_candle[candles=0,lit=0]": "minecraft:orange_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:orange_candle[candles=1,lit=1]": "minecraft:orange_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:orange_candle[candles=1,lit=0]": "minecraft:orange_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:orange_candle[candles=2,lit=1]": "minecraft:orange_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:orange_candle[candles=2,lit=0]": "minecraft:orange_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:orange_candle[candles=3,lit=1]": "minecraft:orange_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:orange_candle[candles=3,lit=0]": "minecraft:orange_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:magenta_candle[candles=0,lit=1]": "minecraft:magenta_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:magenta_candle[candles=0,lit=0]": "minecraft:magenta_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:magenta_candle[candles=1,lit=1]": "minecraft:magenta_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:magenta_candle[candles=1,lit=0]": "minecraft:magenta_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:magenta_candle[candles=2,lit=1]": "minecraft:magenta_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:magenta_candle[candles=2,lit=0]": "minecraft:magenta_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:magenta_candle[candles=3,lit=1]": "minecraft:magenta_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:magenta_candle[candles=3,lit=0]": "minecraft:magenta_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:light_blue_candle[candles=0,lit=1]": "minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:light_blue_candle[candles=0,lit=0]": "minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:light_blue_candle[candles=1,lit=1]": "minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:light_blue_candle[candles=1,lit=0]": "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:light_blue_candle[candles=2,lit=1]": "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:light_blue_candle[candles=2,lit=0]": "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:light_blue_candle[candles=3,lit=1]": "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:light_blue_candle[candles=3,lit=0]": "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:yellow_candle[candles=0,lit=1]": "minecraft:yellow_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:yellow_candle[candles=0,lit=0]": "minecraft:yellow_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:yellow_candle[candles=1,lit=1]": "minecraft:yellow_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:yellow_candle[candles=1,lit=0]": "minecraft:yellow_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:yellow_candle[candles=2,lit=1]": "minecraft:yellow_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:yellow_candle[candles=2,lit=0]": "minecraft:yellow_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:yellow_candle[candles=3,lit=1]": "minecraft:yellow_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:yellow_candle[candles=3,lit=0]": "minecraft:yellow_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:lime_candle[candles=0,lit=1]": "minecraft:lime_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:lime_candle[candles=0,lit=0]": "minecraft:lime_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:lime_candle[candles=1,lit=1]": "minecraft:lime_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:lime_candle[candles=1,lit=0]": "minecraft:lime_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:lime_candle[candles=2,lit=1]": "minecraft:lime_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:lime_candle[candles=2,lit=0]": "minecraft:lime_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:lime_candle[candles=3,lit=1]": "minecraft:lime_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:lime_candle[candles=3,lit=0]": "minecraft:lime_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:pink_candle[candles=0,lit=1]": "minecraft:pink_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:pink_candle[candles=0,lit=0]": "minecraft:pink_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:pink_candle[candles=1,lit=1]": "minecraft:pink_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:pink_candle[candles=1,lit=0]": "minecraft:pink_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:pink_candle[candles=2,lit=1]": "minecraft:pink_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:pink_candle[candles=2,lit=0]": "minecraft:pink_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:pink_candle[candles=3,lit=1]": "minecraft:pink_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:pink_candle[candles=3,lit=0]": "minecraft:pink_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:gray_candle[candles=0,lit=1]": "minecraft:gray_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:gray_candle[candles=0,lit=0]": "minecraft:gray_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:gray_candle[candles=1,lit=1]": "minecraft:gray_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:gray_candle[candles=1,lit=0]": "minecraft:gray_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:gray_candle[candles=2,lit=1]": "minecraft:gray_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:gray_candle[candles=2,lit=0]": "minecraft:gray_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:gray_candle[candles=3,lit=1]": "minecraft:gray_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:gray_candle[candles=3,lit=0]": "minecraft:gray_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:light_gray_candle[candles=0,lit=1]": "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:light_gray_candle[candles=0,lit=0]": "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:light_gray_candle[candles=1,lit=1]": "minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:light_gray_candle[candles=1,lit=0]": "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:light_gray_candle[candles=2,lit=1]": "minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:light_gray_candle[candles=2,lit=0]": "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:light_gray_candle[candles=3,lit=1]": "minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:light_gray_candle[candles=3,lit=0]": "minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:cyan_candle[candles=0,lit=1]": "minecraft:cyan_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:cyan_candle[candles=0,lit=0]": "minecraft:cyan_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:cyan_candle[candles=1,lit=1]": "minecraft:cyan_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:cyan_candle[candles=1,lit=0]": "minecraft:cyan_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:cyan_candle[candles=2,lit=1]": "minecraft:cyan_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:cyan_candle[candles=2,lit=0]": "minecraft:cyan_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:cyan_candle[candles=3,lit=1]": "minecraft:cyan_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:cyan_candle[candles=3,lit=0]": "minecraft:cyan_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:purple_candle[candles=0,lit=1]": "minecraft:purple_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:purple_candle[candles=0,lit=0]": "minecraft:purple_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:purple_candle[candles=1,lit=1]": "minecraft:purple_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:purple_candle[candles=1,lit=0]": "minecraft:purple_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:purple_candle[candles=2,lit=1]": "minecraft:purple_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:purple_candle[candles=2,lit=0]": "minecraft:purple_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:purple_candle[candles=3,lit=1]": "minecraft:purple_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:purple_candle[candles=3,lit=0]": "minecraft:purple_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:blue_candle[candles=0,lit=1]": "minecraft:blue_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:blue_candle[candles=0,lit=0]": "minecraft:blue_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:blue_candle[candles=1,lit=1]": "minecraft:blue_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:blue_candle[candles=1,lit=0]": "minecraft:blue_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:blue_candle[candles=2,lit=1]": "minecraft:blue_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:blue_candle[candles=2,lit=0]": "minecraft:blue_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:blue_candle[candles=3,lit=1]": "minecraft:blue_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:blue_candle[candles=3,lit=0]": "minecraft:blue_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:brown_candle[candles=0,lit=1]": "minecraft:brown_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:brown_candle[candles=0,lit=0]": "minecraft:brown_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:brown_candle[candles=1,lit=1]": "minecraft:brown_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:brown_candle[candles=1,lit=0]": "minecraft:brown_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:brown_candle[candles=2,lit=1]": "minecraft:brown_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:brown_candle[candles=2,lit=0]": "minecraft:brown_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:brown_candle[candles=3,lit=1]": "minecraft:brown_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:brown_candle[candles=3,lit=0]": "minecraft:brown_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:green_candle[candles=0,lit=1]": "minecraft:green_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:green_candle[candles=0,lit=0]": "minecraft:green_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:green_candle[candles=1,lit=1]": "minecraft:green_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:green_candle[candles=1,lit=0]": "minecraft:green_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:green_candle[candles=2,lit=1]": "minecraft:green_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:green_candle[candles=2,lit=0]": "minecraft:green_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:green_candle[candles=3,lit=1]": "minecraft:green_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:green_candle[candles=3,lit=0]": "minecraft:green_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:red_candle[candles=0,lit=1]": "minecraft:red_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:red_candle[candles=0,lit=0]": "minecraft:red_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:red_candle[candles=1,lit=1]": "minecraft:red_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:red_candle[candles=1,lit=0]": "minecraft:red_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:red_candle[candles=2,lit=1]": "minecraft:red_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:red_candle[candles=2,lit=0]": "minecraft:red_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:red_candle[candles=3,lit=1]": "minecraft:red_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:red_candle[candles=3,lit=0]": "minecraft:red_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:black_candle[candles=0,lit=1]": "minecraft:black_candle[candles=1,lit=true,waterlogged=false]", + "minecraft:black_candle[candles=0,lit=0]": "minecraft:black_candle[candles=1,lit=false,waterlogged=false]", + "minecraft:black_candle[candles=1,lit=1]": "minecraft:black_candle[candles=2,lit=true,waterlogged=false]", + "minecraft:black_candle[candles=1,lit=0]": "minecraft:black_candle[candles=2,lit=false,waterlogged=false]", + "minecraft:black_candle[candles=2,lit=1]": "minecraft:black_candle[candles=3,lit=true,waterlogged=false]", + "minecraft:black_candle[candles=2,lit=0]": "minecraft:black_candle[candles=3,lit=false,waterlogged=false]", + "minecraft:black_candle[candles=3,lit=1]": "minecraft:black_candle[candles=4,lit=true,waterlogged=false]", + "minecraft:black_candle[candles=3,lit=0]": "minecraft:black_candle[candles=4,lit=false,waterlogged=false]", + "minecraft:candle_cake[lit=1]": "minecraft:candle_cake[lit=true]", + "minecraft:candle_cake[lit=0]": "minecraft:candle_cake[lit=false]", + "minecraft:white_candle_cake[lit=1]": "minecraft:white_candle_cake[lit=true]", + "minecraft:white_candle_cake[lit=0]": "minecraft:white_candle_cake[lit=false]", + "minecraft:orange_candle_cake[lit=1]": "minecraft:orange_candle_cake[lit=true]", + "minecraft:orange_candle_cake[lit=0]": "minecraft:orange_candle_cake[lit=false]", + "minecraft:magenta_candle_cake[lit=1]": "minecraft:magenta_candle_cake[lit=true]", + "minecraft:magenta_candle_cake[lit=0]": "minecraft:magenta_candle_cake[lit=false]", + "minecraft:light_blue_candle_cake[lit=1]": "minecraft:light_blue_candle_cake[lit=true]", + "minecraft:light_blue_candle_cake[lit=0]": "minecraft:light_blue_candle_cake[lit=false]", + "minecraft:yellow_candle_cake[lit=1]": "minecraft:yellow_candle_cake[lit=true]", + "minecraft:yellow_candle_cake[lit=0]": "minecraft:yellow_candle_cake[lit=false]", + "minecraft:lime_candle_cake[lit=1]": "minecraft:lime_candle_cake[lit=true]", + "minecraft:lime_candle_cake[lit=0]": "minecraft:lime_candle_cake[lit=false]", + "minecraft:pink_candle_cake[lit=1]": "minecraft:pink_candle_cake[lit=true]", + "minecraft:pink_candle_cake[lit=0]": "minecraft:pink_candle_cake[lit=false]", + "minecraft:gray_candle_cake[lit=1]": "minecraft:gray_candle_cake[lit=true]", + "minecraft:gray_candle_cake[lit=0]": "minecraft:gray_candle_cake[lit=false]", + "minecraft:light_gray_candle_cake[lit=1]": "minecraft:light_gray_candle_cake[lit=true]", + "minecraft:light_gray_candle_cake[lit=0]": "minecraft:light_gray_candle_cake[lit=false]", + "minecraft:cyan_candle_cake[lit=1]": "minecraft:cyan_candle_cake[lit=true]", + "minecraft:cyan_candle_cake[lit=0]": "minecraft:cyan_candle_cake[lit=false]", + "minecraft:purple_candle_cake[lit=1]": "minecraft:purple_candle_cake[lit=true]", + "minecraft:purple_candle_cake[lit=0]": "minecraft:purple_candle_cake[lit=false]", + "minecraft:blue_candle_cake[lit=1]": "minecraft:blue_candle_cake[lit=true]", + "minecraft:blue_candle_cake[lit=0]": "minecraft:blue_candle_cake[lit=false]", + "minecraft:brown_candle_cake[lit=1]": "minecraft:brown_candle_cake[lit=true]", + "minecraft:brown_candle_cake[lit=0]": "minecraft:brown_candle_cake[lit=false]", + "minecraft:green_candle_cake[lit=1]": "minecraft:green_candle_cake[lit=true]", + "minecraft:green_candle_cake[lit=0]": "minecraft:green_candle_cake[lit=false]", + "minecraft:red_candle_cake[lit=1]": "minecraft:red_candle_cake[lit=true]", + "minecraft:red_candle_cake[lit=0]": "minecraft:red_candle_cake[lit=false]", + "minecraft:black_candle_cake[lit=1]": "minecraft:black_candle_cake[lit=true]", + "minecraft:black_candle_cake[lit=0]": "minecraft:black_candle_cake[lit=false]", + "minecraft:amethyst_block[]": "minecraft:amethyst_block[]", + "minecraft:budding_amethyst[]": "minecraft:budding_amethyst[]", + "minecraft:amethyst_cluster[minecraft:block_face=north]": "minecraft:amethyst_cluster[facing=north,waterlogged=false]", + "minecraft:amethyst_cluster[minecraft:block_face=east]": "minecraft:amethyst_cluster[facing=east,waterlogged=false]", + "minecraft:amethyst_cluster[minecraft:block_face=south]": "minecraft:amethyst_cluster[facing=south,waterlogged=false]", + "minecraft:amethyst_cluster[minecraft:block_face=west]": "minecraft:amethyst_cluster[facing=west,waterlogged=false]", + "minecraft:amethyst_cluster[minecraft:block_face=up]": "minecraft:amethyst_cluster[facing=up,waterlogged=false]", + "minecraft:amethyst_cluster[minecraft:block_face=down]": "minecraft:amethyst_cluster[facing=down,waterlogged=false]", + "minecraft:large_amethyst_bud[minecraft:block_face=north]": "minecraft:large_amethyst_bud[facing=north,waterlogged=false]", + "minecraft:large_amethyst_bud[minecraft:block_face=east]": "minecraft:large_amethyst_bud[facing=east,waterlogged=false]", + "minecraft:large_amethyst_bud[minecraft:block_face=south]": "minecraft:large_amethyst_bud[facing=south,waterlogged=false]", + "minecraft:large_amethyst_bud[minecraft:block_face=west]": "minecraft:large_amethyst_bud[facing=west,waterlogged=false]", + "minecraft:large_amethyst_bud[minecraft:block_face=up]": "minecraft:large_amethyst_bud[facing=up,waterlogged=false]", + "minecraft:large_amethyst_bud[minecraft:block_face=down]": "minecraft:large_amethyst_bud[facing=down,waterlogged=false]", + "minecraft:medium_amethyst_bud[minecraft:block_face=north]": "minecraft:medium_amethyst_bud[facing=north,waterlogged=false]", + "minecraft:medium_amethyst_bud[minecraft:block_face=east]": "minecraft:medium_amethyst_bud[facing=east,waterlogged=false]", + "minecraft:medium_amethyst_bud[minecraft:block_face=south]": "minecraft:medium_amethyst_bud[facing=south,waterlogged=false]", + "minecraft:medium_amethyst_bud[minecraft:block_face=west]": "minecraft:medium_amethyst_bud[facing=west,waterlogged=false]", + "minecraft:medium_amethyst_bud[minecraft:block_face=up]": "minecraft:medium_amethyst_bud[facing=up,waterlogged=false]", + "minecraft:medium_amethyst_bud[minecraft:block_face=down]": "minecraft:medium_amethyst_bud[facing=down,waterlogged=false]", + "minecraft:small_amethyst_bud[minecraft:block_face=north]": "minecraft:small_amethyst_bud[facing=north,waterlogged=false]", + "minecraft:small_amethyst_bud[minecraft:block_face=east]": "minecraft:small_amethyst_bud[facing=east,waterlogged=false]", + "minecraft:small_amethyst_bud[minecraft:block_face=south]": "minecraft:small_amethyst_bud[facing=south,waterlogged=false]", + "minecraft:small_amethyst_bud[minecraft:block_face=west]": "minecraft:small_amethyst_bud[facing=west,waterlogged=false]", + "minecraft:small_amethyst_bud[minecraft:block_face=up]": "minecraft:small_amethyst_bud[facing=up,waterlogged=false]", + "minecraft:small_amethyst_bud[minecraft:block_face=down]": "minecraft:small_amethyst_bud[facing=down,waterlogged=false]", + "minecraft:tuff[]": "minecraft:tuff[]", + "minecraft:tuff_slab[minecraft:vertical_half=top]": "minecraft:tuff_slab[type=top,waterlogged=false]", + "minecraft:tuff_slab[minecraft:vertical_half=bottom]": "minecraft:tuff_slab[type=bottom,waterlogged=false]", + "minecraft:tuff_double_slab[minecraft:vertical_half=bottom]": "minecraft:tuff_slab[type=double,waterlogged=false]", + "minecraft:tuff_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:tuff_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:tuff_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:tuff_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:tuff_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:tuff_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:tuff_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:tuff_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff[]": "minecraft:polished_tuff[]", + "minecraft:polished_tuff_slab[minecraft:vertical_half=top]": "minecraft:polished_tuff_slab[type=top,waterlogged=false]", + "minecraft:polished_tuff_slab[minecraft:vertical_half=bottom]": "minecraft:polished_tuff_slab[type=bottom,waterlogged=false]", + "minecraft:polished_tuff_double_slab[minecraft:vertical_half=bottom]": "minecraft:polished_tuff_slab[type=double,waterlogged=false]", + "minecraft:polished_tuff_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_tuff_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_tuff_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_tuff_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_tuff_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_tuff_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_tuff_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_tuff_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:chiseled_tuff[]": "minecraft:chiseled_tuff[]", + "minecraft:tuff_bricks[]": "minecraft:tuff_bricks[]", + "minecraft:tuff_brick_slab[minecraft:vertical_half=top]": "minecraft:tuff_brick_slab[type=top,waterlogged=false]", + "minecraft:tuff_brick_slab[minecraft:vertical_half=bottom]": "minecraft:tuff_brick_slab[type=bottom,waterlogged=false]", + "minecraft:tuff_brick_double_slab[minecraft:vertical_half=bottom]": "minecraft:tuff_brick_slab[type=double,waterlogged=false]", + "minecraft:tuff_brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:tuff_brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:tuff_brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:tuff_brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:tuff_brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:tuff_brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:tuff_brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:tuff_brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:chiseled_tuff_bricks[]": "minecraft:chiseled_tuff_bricks[]", + "minecraft:calcite[]": "minecraft:calcite[]", + "minecraft:tinted_glass[]": "minecraft:tinted_glass[]", + "minecraft:powder_snow[]": "minecraft:powder_snow[]", + "minecraft:sculk_sensor[sculk_sensor_phase=0]": "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=false]", + "minecraft:sculk_sensor[sculk_sensor_phase=1]": "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=false]", + "minecraft:sculk_sensor[sculk_sensor_phase=2]": "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]": "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=inactive,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]": "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=active,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]": "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=cooldown,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]": "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=inactive,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]": "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=active,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]": "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=cooldown,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]": "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=inactive,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]": "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=active,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]": "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=cooldown,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]": "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=inactive,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]": "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=active,waterlogged=false]", + "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]": "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=cooldown,waterlogged=false]", + "minecraft:sculk[]": "minecraft:sculk[]", + "minecraft:sculk_vein[multi_face_direction_bits=63]": "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=55]": "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=61]": "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=53]": "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=59]": "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=51]": "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=57]": "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=49]": "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=47]": "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=39]": "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=45]": "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=37]": "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=43]": "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=35]": "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=41]": "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=33]": "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=31]": "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=23]": "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=29]": "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=21]": "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=27]": "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=19]": "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=25]": "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=17]": "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=15]": "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=7]": "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=13]": "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=5]": "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=11]": "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=3]": "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=9]": "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=1]": "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=62]": "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=54]": "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=60]": "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=52]": "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=58]": "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=50]": "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=56]": "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=48]": "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=46]": "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=38]": "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=44]": "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=36]": "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=42]": "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=34]": "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=40]": "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=32]": "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=30]": "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=22]": "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=28]": "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=20]": "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=26]": "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=18]": "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=24]": "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=16]": "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=14]": "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=6]": "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=12]": "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=4]": "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=10]": "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=2]": "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]", + "minecraft:sculk_vein[multi_face_direction_bits=8]": "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true]", + "minecraft:sculk_vein[multi_face_direction_bits=0]": "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]", + "minecraft:sculk_catalyst[bloom=1]": "minecraft:sculk_catalyst[bloom=true]", + "minecraft:sculk_catalyst[bloom=0]": "minecraft:sculk_catalyst[bloom=false]", + "minecraft:sculk_shrieker[active=1,can_summon=1]": "minecraft:sculk_shrieker[can_summon=true,shrieking=true,waterlogged=false]", + "minecraft:sculk_shrieker[active=0,can_summon=1]": "minecraft:sculk_shrieker[can_summon=true,shrieking=false,waterlogged=false]", + "minecraft:sculk_shrieker[active=1,can_summon=0]": "minecraft:sculk_shrieker[can_summon=false,shrieking=true,waterlogged=false]", + "minecraft:sculk_shrieker[active=0,can_summon=0]": "minecraft:sculk_shrieker[can_summon=false,shrieking=false,waterlogged=false]", + "minecraft:copper_block[]": "minecraft:copper_block[]", + "minecraft:exposed_copper[]": "minecraft:exposed_copper[]", + "minecraft:weathered_copper[]": "minecraft:weathered_copper[]", + "minecraft:oxidized_copper[]": "minecraft:oxidized_copper[]", + "minecraft:copper_ore[]": "minecraft:copper_ore[]", + "minecraft:deepslate_copper_ore[]": "minecraft:deepslate_copper_ore[]", + "minecraft:oxidized_cut_copper[]": "minecraft:oxidized_cut_copper[]", + "minecraft:weathered_cut_copper[]": "minecraft:weathered_cut_copper[]", + "minecraft:exposed_cut_copper[]": "minecraft:exposed_cut_copper[]", + "minecraft:cut_copper[]": "minecraft:cut_copper[]", + "minecraft:oxidized_chiseled_copper[]": "minecraft:oxidized_chiseled_copper[]", + "minecraft:weathered_chiseled_copper[]": "minecraft:weathered_chiseled_copper[]", + "minecraft:exposed_chiseled_copper[]": "minecraft:exposed_chiseled_copper[]", + "minecraft:chiseled_copper[]": "minecraft:chiseled_copper[]", + "minecraft:waxed_oxidized_chiseled_copper[]": "minecraft:waxed_oxidized_chiseled_copper[]", + "minecraft:waxed_weathered_chiseled_copper[]": "minecraft:waxed_weathered_chiseled_copper[]", + "minecraft:waxed_exposed_chiseled_copper[]": "minecraft:waxed_exposed_chiseled_copper[]", + "minecraft:waxed_chiseled_copper[]": "minecraft:waxed_chiseled_copper[]", + "minecraft:oxidized_cut_copper_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:oxidized_cut_copper_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:oxidized_cut_copper_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:oxidized_cut_copper_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:oxidized_cut_copper_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:oxidized_cut_copper_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:oxidized_cut_copper_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:oxidized_cut_copper_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:weathered_cut_copper_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:weathered_cut_copper_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:weathered_cut_copper_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:weathered_cut_copper_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:weathered_cut_copper_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:weathered_cut_copper_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:weathered_cut_copper_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:weathered_cut_copper_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:exposed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:exposed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:exposed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:exposed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:exposed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:exposed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:exposed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:exposed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cut_copper_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cut_copper_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cut_copper_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cut_copper_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cut_copper_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cut_copper_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cut_copper_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cut_copper_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=top]": "minecraft:oxidized_cut_copper_slab[type=top,waterlogged=false]", + "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=false]", + "minecraft:oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:oxidized_cut_copper_slab[type=double,waterlogged=false]", + "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=top]": "minecraft:weathered_cut_copper_slab[type=top,waterlogged=false]", + "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=false]", + "minecraft:weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:weathered_cut_copper_slab[type=double,waterlogged=false]", + "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=top]": "minecraft:exposed_cut_copper_slab[type=top,waterlogged=false]", + "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=false]", + "minecraft:exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:exposed_cut_copper_slab[type=double,waterlogged=false]", + "minecraft:cut_copper_slab[minecraft:vertical_half=top]": "minecraft:cut_copper_slab[type=top,waterlogged=false]", + "minecraft:cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:cut_copper_slab[type=bottom,waterlogged=false]", + "minecraft:double_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:cut_copper_slab[type=double,waterlogged=false]", + "minecraft:waxed_copper[]": "minecraft:waxed_copper_block[]", + "minecraft:waxed_weathered_copper[]": "minecraft:waxed_weathered_copper[]", + "minecraft:waxed_exposed_copper[]": "minecraft:waxed_exposed_copper[]", + "minecraft:waxed_oxidized_copper[]": "minecraft:waxed_oxidized_copper[]", + "minecraft:waxed_oxidized_cut_copper[]": "minecraft:waxed_oxidized_cut_copper[]", + "minecraft:waxed_weathered_cut_copper[]": "minecraft:waxed_weathered_cut_copper[]", + "minecraft:waxed_exposed_cut_copper[]": "minecraft:waxed_exposed_cut_copper[]", + "minecraft:waxed_cut_copper[]": "minecraft:waxed_cut_copper[]", + "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_cut_copper_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:waxed_cut_copper_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=top]": "minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=false]", + "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=false]", + "minecraft:waxed_oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=top]": "minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=false]", + "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=false]", + "minecraft:waxed_weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=top]": "minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=false]", + "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=false]", + "minecraft:waxed_exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=false]", + "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=top]": "minecraft:waxed_cut_copper_slab[type=top,waterlogged=false]", + "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false]", + "minecraft:waxed_double_cut_copper_slab[minecraft:vertical_half=bottom]": "minecraft:waxed_cut_copper_slab[type=double,waterlogged=false]", + "minecraft:copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:exposed_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:exposed_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:weathered_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:weathered_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=1]": "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=0,open_bit=1,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=0,open_bit=0,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=1,open_bit=1,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]", + "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=1,open_bit=0,upper_block_bit=0]": "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]", + "minecraft:copper_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:copper_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:exposed_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:weathered_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=1]": "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=1]": "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=1,upside_down_bit=0]": "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=0,upside_down_bit=0]": "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=1]": "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=1]": "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=1,upside_down_bit=0]": "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=0,upside_down_bit=0]": "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=1]": "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=1]": "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=1,upside_down_bit=0]": "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=0,upside_down_bit=0]": "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=1]": "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=1]": "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=1,upside_down_bit=0]": "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]", + "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=0,upside_down_bit=0]": "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]", + "minecraft:copper_grate[]": "minecraft:copper_grate[waterlogged=false]", + "minecraft:exposed_copper_grate[]": "minecraft:exposed_copper_grate[waterlogged=false]", + "minecraft:weathered_copper_grate[]": "minecraft:weathered_copper_grate[waterlogged=false]", + "minecraft:oxidized_copper_grate[]": "minecraft:oxidized_copper_grate[waterlogged=false]", + "minecraft:waxed_copper_grate[]": "minecraft:waxed_copper_grate[waterlogged=false]", + "minecraft:waxed_exposed_copper_grate[]": "minecraft:waxed_exposed_copper_grate[waterlogged=false]", + "minecraft:waxed_weathered_copper_grate[]": "minecraft:waxed_weathered_copper_grate[waterlogged=false]", + "minecraft:waxed_oxidized_copper_grate[]": "minecraft:waxed_oxidized_copper_grate[waterlogged=false]", + "minecraft:copper_bulb[lit=1,powered_bit=1]": "minecraft:copper_bulb[lit=true,powered=true]", + "minecraft:copper_bulb[lit=1,powered_bit=0]": "minecraft:copper_bulb[lit=true,powered=false]", + "minecraft:copper_bulb[lit=0,powered_bit=1]": "minecraft:copper_bulb[lit=false,powered=true]", + "minecraft:copper_bulb[lit=0,powered_bit=0]": "minecraft:copper_bulb[lit=false,powered=false]", + "minecraft:exposed_copper_bulb[lit=1,powered_bit=1]": "minecraft:exposed_copper_bulb[lit=true,powered=true]", + "minecraft:exposed_copper_bulb[lit=1,powered_bit=0]": "minecraft:exposed_copper_bulb[lit=true,powered=false]", + "minecraft:exposed_copper_bulb[lit=0,powered_bit=1]": "minecraft:exposed_copper_bulb[lit=false,powered=true]", + "minecraft:exposed_copper_bulb[lit=0,powered_bit=0]": "minecraft:exposed_copper_bulb[lit=false,powered=false]", + "minecraft:weathered_copper_bulb[lit=1,powered_bit=1]": "minecraft:weathered_copper_bulb[lit=true,powered=true]", + "minecraft:weathered_copper_bulb[lit=1,powered_bit=0]": "minecraft:weathered_copper_bulb[lit=true,powered=false]", + "minecraft:weathered_copper_bulb[lit=0,powered_bit=1]": "minecraft:weathered_copper_bulb[lit=false,powered=true]", + "minecraft:weathered_copper_bulb[lit=0,powered_bit=0]": "minecraft:weathered_copper_bulb[lit=false,powered=false]", + "minecraft:oxidized_copper_bulb[lit=1,powered_bit=1]": "minecraft:oxidized_copper_bulb[lit=true,powered=true]", + "minecraft:oxidized_copper_bulb[lit=1,powered_bit=0]": "minecraft:oxidized_copper_bulb[lit=true,powered=false]", + "minecraft:oxidized_copper_bulb[lit=0,powered_bit=1]": "minecraft:oxidized_copper_bulb[lit=false,powered=true]", + "minecraft:oxidized_copper_bulb[lit=0,powered_bit=0]": "minecraft:oxidized_copper_bulb[lit=false,powered=false]", + "minecraft:waxed_copper_bulb[lit=1,powered_bit=1]": "minecraft:waxed_copper_bulb[lit=true,powered=true]", + "minecraft:waxed_copper_bulb[lit=1,powered_bit=0]": "minecraft:waxed_copper_bulb[lit=true,powered=false]", + "minecraft:waxed_copper_bulb[lit=0,powered_bit=1]": "minecraft:waxed_copper_bulb[lit=false,powered=true]", + "minecraft:waxed_copper_bulb[lit=0,powered_bit=0]": "minecraft:waxed_copper_bulb[lit=false,powered=false]", + "minecraft:waxed_exposed_copper_bulb[lit=1,powered_bit=1]": "minecraft:waxed_exposed_copper_bulb[lit=true,powered=true]", + "minecraft:waxed_exposed_copper_bulb[lit=1,powered_bit=0]": "minecraft:waxed_exposed_copper_bulb[lit=true,powered=false]", + "minecraft:waxed_exposed_copper_bulb[lit=0,powered_bit=1]": "minecraft:waxed_exposed_copper_bulb[lit=false,powered=true]", + "minecraft:waxed_exposed_copper_bulb[lit=0,powered_bit=0]": "minecraft:waxed_exposed_copper_bulb[lit=false,powered=false]", + "minecraft:waxed_weathered_copper_bulb[lit=1,powered_bit=1]": "minecraft:waxed_weathered_copper_bulb[lit=true,powered=true]", + "minecraft:waxed_weathered_copper_bulb[lit=1,powered_bit=0]": "minecraft:waxed_weathered_copper_bulb[lit=true,powered=false]", + "minecraft:waxed_weathered_copper_bulb[lit=0,powered_bit=1]": "minecraft:waxed_weathered_copper_bulb[lit=false,powered=true]", + "minecraft:waxed_weathered_copper_bulb[lit=0,powered_bit=0]": "minecraft:waxed_weathered_copper_bulb[lit=false,powered=false]", + "minecraft:waxed_oxidized_copper_bulb[lit=1,powered_bit=1]": "minecraft:waxed_oxidized_copper_bulb[lit=true,powered=true]", + "minecraft:waxed_oxidized_copper_bulb[lit=1,powered_bit=0]": "minecraft:waxed_oxidized_copper_bulb[lit=true,powered=false]", + "minecraft:waxed_oxidized_copper_bulb[lit=0,powered_bit=1]": "minecraft:waxed_oxidized_copper_bulb[lit=false,powered=true]", + "minecraft:waxed_oxidized_copper_bulb[lit=0,powered_bit=0]": "minecraft:waxed_oxidized_copper_bulb[lit=false,powered=false]", + "minecraft:lightning_rod[facing_direction=2]": "minecraft:lightning_rod[facing=north,powered=false,waterlogged=false]", + "minecraft:lightning_rod[facing_direction=5]": "minecraft:lightning_rod[facing=east,powered=false,waterlogged=false]", + "minecraft:lightning_rod[facing_direction=3]": "minecraft:lightning_rod[facing=south,powered=false,waterlogged=false]", + "minecraft:lightning_rod[facing_direction=4]": "minecraft:lightning_rod[facing=west,powered=false,waterlogged=false]", + "minecraft:lightning_rod[facing_direction=1]": "minecraft:lightning_rod[facing=up,powered=false,waterlogged=false]", + "minecraft:lightning_rod[facing_direction=0]": "minecraft:lightning_rod[facing=down,powered=false,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=0]": "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=1]": "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=0]": "minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=1]": "minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=0]": "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=1]": "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=0]": "minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=1]": "minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=0]": "minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false]", + "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=1]": "minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false]", + "minecraft:dripstone_block[]": "minecraft:dripstone_block[]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=0]": "minecraft:cave_vines[age=0,berries=true]", + "minecraft:cave_vines[growing_plant_age=0]": "minecraft:cave_vines_plant[berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=1]": "minecraft:cave_vines[age=1,berries=true]", + "minecraft:cave_vines[growing_plant_age=1]": "minecraft:cave_vines[age=1,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=2]": "minecraft:cave_vines[age=2,berries=true]", + "minecraft:cave_vines[growing_plant_age=2]": "minecraft:cave_vines[age=2,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=3]": "minecraft:cave_vines[age=3,berries=true]", + "minecraft:cave_vines[growing_plant_age=3]": "minecraft:cave_vines[age=3,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=4]": "minecraft:cave_vines[age=4,berries=true]", + "minecraft:cave_vines[growing_plant_age=4]": "minecraft:cave_vines[age=4,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=5]": "minecraft:cave_vines[age=5,berries=true]", + "minecraft:cave_vines[growing_plant_age=5]": "minecraft:cave_vines[age=5,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=6]": "minecraft:cave_vines[age=6,berries=true]", + "minecraft:cave_vines[growing_plant_age=6]": "minecraft:cave_vines[age=6,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=7]": "minecraft:cave_vines[age=7,berries=true]", + "minecraft:cave_vines[growing_plant_age=7]": "minecraft:cave_vines[age=7,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=8]": "minecraft:cave_vines[age=8,berries=true]", + "minecraft:cave_vines[growing_plant_age=8]": "minecraft:cave_vines[age=8,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=9]": "minecraft:cave_vines[age=9,berries=true]", + "minecraft:cave_vines[growing_plant_age=9]": "minecraft:cave_vines[age=9,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=10]": "minecraft:cave_vines[age=10,berries=true]", + "minecraft:cave_vines[growing_plant_age=10]": "minecraft:cave_vines[age=10,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=11]": "minecraft:cave_vines[age=11,berries=true]", + "minecraft:cave_vines[growing_plant_age=11]": "minecraft:cave_vines[age=11,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=12]": "minecraft:cave_vines[age=12,berries=true]", + "minecraft:cave_vines[growing_plant_age=12]": "minecraft:cave_vines[age=12,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=13]": "minecraft:cave_vines[age=13,berries=true]", + "minecraft:cave_vines[growing_plant_age=13]": "minecraft:cave_vines[age=13,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=14]": "minecraft:cave_vines[age=14,berries=true]", + "minecraft:cave_vines[growing_plant_age=14]": "minecraft:cave_vines[age=14,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=15]": "minecraft:cave_vines[age=15,berries=true]", + "minecraft:cave_vines[growing_plant_age=15]": "minecraft:cave_vines[age=15,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=16]": "minecraft:cave_vines[age=16,berries=true]", + "minecraft:cave_vines[growing_plant_age=16]": "minecraft:cave_vines[age=16,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=17]": "minecraft:cave_vines[age=17,berries=true]", + "minecraft:cave_vines[growing_plant_age=17]": "minecraft:cave_vines[age=17,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=18]": "minecraft:cave_vines[age=18,berries=true]", + "minecraft:cave_vines[growing_plant_age=18]": "minecraft:cave_vines[age=18,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=19]": "minecraft:cave_vines[age=19,berries=true]", + "minecraft:cave_vines[growing_plant_age=19]": "minecraft:cave_vines[age=19,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=20]": "minecraft:cave_vines[age=20,berries=true]", + "minecraft:cave_vines[growing_plant_age=20]": "minecraft:cave_vines[age=20,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=21]": "minecraft:cave_vines[age=21,berries=true]", + "minecraft:cave_vines[growing_plant_age=21]": "minecraft:cave_vines[age=21,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=22]": "minecraft:cave_vines[age=22,berries=true]", + "minecraft:cave_vines[growing_plant_age=22]": "minecraft:cave_vines[age=22,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=23]": "minecraft:cave_vines[age=23,berries=true]", + "minecraft:cave_vines[growing_plant_age=23]": "minecraft:cave_vines[age=23,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=24]": "minecraft:cave_vines[age=24,berries=true]", + "minecraft:cave_vines[growing_plant_age=24]": "minecraft:cave_vines[age=24,berries=false]", + "minecraft:cave_vines_head_with_berries[growing_plant_age=25]": "minecraft:cave_vines[age=25,berries=true]", + "minecraft:cave_vines[growing_plant_age=25]": "minecraft:cave_vines[age=25,berries=false]", + "minecraft:cave_vines_body_with_berries[growing_plant_age=0]": "minecraft:cave_vines_plant[berries=true]", + "minecraft:spore_blossom[]": "minecraft:spore_blossom[]", + "minecraft:azalea[]": "minecraft:azalea[]", + "minecraft:flowering_azalea[]": "minecraft:flowering_azalea[]", + "minecraft:moss_carpet[]": "minecraft:moss_carpet[]", + "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=north]": "minecraft:pink_petals[facing=north,flower_amount=1]", + "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=north]": "minecraft:pink_petals[facing=north,flower_amount=2]", + "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=north]": "minecraft:pink_petals[facing=north,flower_amount=3]", + "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=north]": "minecraft:pink_petals[facing=north,flower_amount=4]", + "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=south]": "minecraft:pink_petals[facing=south,flower_amount=1]", + "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=south]": "minecraft:pink_petals[facing=south,flower_amount=2]", + "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=south]": "minecraft:pink_petals[facing=south,flower_amount=3]", + "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=south]": "minecraft:pink_petals[facing=south,flower_amount=4]", + "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=west]": "minecraft:pink_petals[facing=west,flower_amount=1]", + "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=west]": "minecraft:pink_petals[facing=west,flower_amount=2]", + "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=west]": "minecraft:pink_petals[facing=west,flower_amount=3]", + "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=west]": "minecraft:pink_petals[facing=west,flower_amount=4]", + "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=east]": "minecraft:pink_petals[facing=east,flower_amount=1]", + "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=east]": "minecraft:pink_petals[facing=east,flower_amount=2]", + "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=east]": "minecraft:pink_petals[facing=east,flower_amount=3]", + "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=east]": "minecraft:pink_petals[facing=east,flower_amount=4]", + "minecraft:moss_block[]": "minecraft:moss_block[]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]": "minecraft:big_dripleaf[facing=north,tilt=none,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=north]": "minecraft:big_dripleaf[facing=north,tilt=unstable,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=north]": "minecraft:big_dripleaf[facing=north,tilt=partial,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=north]": "minecraft:big_dripleaf[facing=north,tilt=full,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]": "minecraft:big_dripleaf[facing=south,tilt=none,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=south]": "minecraft:big_dripleaf[facing=south,tilt=unstable,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=south]": "minecraft:big_dripleaf[facing=south,tilt=partial,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=south]": "minecraft:big_dripleaf[facing=south,tilt=full,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]": "minecraft:big_dripleaf[facing=west,tilt=none,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=west]": "minecraft:big_dripleaf[facing=west,tilt=unstable,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=west]": "minecraft:big_dripleaf[facing=west,tilt=partial,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=west]": "minecraft:big_dripleaf[facing=west,tilt=full,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]": "minecraft:big_dripleaf[facing=east,tilt=none,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=east]": "minecraft:big_dripleaf[facing=east,tilt=unstable,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=east]": "minecraft:big_dripleaf[facing=east,tilt=partial,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=1,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=east]": "minecraft:big_dripleaf[facing=east,tilt=full,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=0,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]": "minecraft:big_dripleaf_stem[facing=north,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=0,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]": "minecraft:big_dripleaf_stem[facing=south,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=0,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]": "minecraft:big_dripleaf_stem[facing=west,waterlogged=false]", + "minecraft:big_dripleaf[big_dripleaf_head=0,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]": "minecraft:big_dripleaf_stem[facing=east,waterlogged=false]", + "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=1]": "minecraft:small_dripleaf[facing=north,half=upper,waterlogged=false]", + "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=0]": "minecraft:small_dripleaf[facing=north,half=lower,waterlogged=false]", + "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=1]": "minecraft:small_dripleaf[facing=south,half=upper,waterlogged=false]", + "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=0]": "minecraft:small_dripleaf[facing=south,half=lower,waterlogged=false]", + "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=1]": "minecraft:small_dripleaf[facing=west,half=upper,waterlogged=false]", + "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=0]": "minecraft:small_dripleaf[facing=west,half=lower,waterlogged=false]", + "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=1]": "minecraft:small_dripleaf[facing=east,half=upper,waterlogged=false]", + "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=0]": "minecraft:small_dripleaf[facing=east,half=lower,waterlogged=false]", + "minecraft:hanging_roots[]": "minecraft:hanging_roots[waterlogged=false]", + "minecraft:dirt_with_roots[]": "minecraft:rooted_dirt[]", + "minecraft:mud[]": "minecraft:mud[]", + "minecraft:deepslate[pillar_axis=x]": "minecraft:deepslate[axis=x]", + "minecraft:deepslate[pillar_axis=y]": "minecraft:deepslate[axis=y]", + "minecraft:deepslate[pillar_axis=z]": "minecraft:deepslate[axis=z]", + "minecraft:cobbled_deepslate[]": "minecraft:cobbled_deepslate[]", + "minecraft:cobbled_deepslate_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cobbled_deepslate_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cobbled_deepslate_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cobbled_deepslate_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cobbled_deepslate_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cobbled_deepslate_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cobbled_deepslate_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:cobbled_deepslate_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=top]": "minecraft:cobbled_deepslate_slab[type=top,waterlogged=false]", + "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=bottom]": "minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=false]", + "minecraft:cobbled_deepslate_double_slab[minecraft:vertical_half=bottom]": "minecraft:cobbled_deepslate_slab[type=double,waterlogged=false]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate[]": "minecraft:polished_deepslate[]", + "minecraft:polished_deepslate_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_deepslate_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_deepslate_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_deepslate_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_deepslate_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_deepslate_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_deepslate_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:polished_deepslate_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:polished_deepslate_slab[minecraft:vertical_half=top]": "minecraft:polished_deepslate_slab[type=top,waterlogged=false]", + "minecraft:polished_deepslate_slab[minecraft:vertical_half=bottom]": "minecraft:polished_deepslate_slab[type=bottom,waterlogged=false]", + "minecraft:polished_deepslate_double_slab[minecraft:vertical_half=bottom]": "minecraft:polished_deepslate_slab[type=double,waterlogged=false]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tiles[]": "minecraft:deepslate_tiles[]", + "minecraft:deepslate_tile_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_tile_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_tile_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_tile_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_tile_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_tile_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_tile_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_tile_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_tile_slab[minecraft:vertical_half=top]": "minecraft:deepslate_tile_slab[type=top,waterlogged=false]", + "minecraft:deepslate_tile_slab[minecraft:vertical_half=bottom]": "minecraft:deepslate_tile_slab[type=bottom,waterlogged=false]", + "minecraft:deepslate_tile_double_slab[minecraft:vertical_half=bottom]": "minecraft:deepslate_tile_slab[type=double,waterlogged=false]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_bricks[]": "minecraft:deepslate_bricks[]", + "minecraft:deepslate_brick_stairs[upside_down_bit=1,weirdo_direction=3]": "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_brick_stairs[upside_down_bit=0,weirdo_direction=3]": "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_brick_stairs[upside_down_bit=1,weirdo_direction=2]": "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_brick_stairs[upside_down_bit=0,weirdo_direction=2]": "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_brick_stairs[upside_down_bit=1,weirdo_direction=1]": "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_brick_stairs[upside_down_bit=0,weirdo_direction=1]": "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_brick_stairs[upside_down_bit=1,weirdo_direction=0]": "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_brick_stairs[upside_down_bit=0,weirdo_direction=0]": "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]", + "minecraft:deepslate_brick_slab[minecraft:vertical_half=top]": "minecraft:deepslate_brick_slab[type=top,waterlogged=false]", + "minecraft:deepslate_brick_slab[minecraft:vertical_half=bottom]": "minecraft:deepslate_brick_slab[type=bottom,waterlogged=false]", + "minecraft:deepslate_brick_double_slab[minecraft:vertical_half=bottom]": "minecraft:deepslate_brick_slab[type=double,waterlogged=false]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=1]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]", + "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=0]": "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]", + "minecraft:chiseled_deepslate[]": "minecraft:chiseled_deepslate[]", + "minecraft:cracked_deepslate_bricks[]": "minecraft:cracked_deepslate_bricks[]", + "minecraft:cracked_deepslate_tiles[]": "minecraft:cracked_deepslate_tiles[]", + "minecraft:infested_deepslate[pillar_axis=x]": "minecraft:infested_deepslate[axis=x]", + "minecraft:infested_deepslate[pillar_axis=y]": "minecraft:infested_deepslate[axis=y]", + "minecraft:infested_deepslate[pillar_axis=z]": "minecraft:infested_deepslate[axis=z]", + "minecraft:smooth_basalt[]": "minecraft:smooth_basalt[]", + "minecraft:raw_iron_block[]": "minecraft:raw_iron_block[]", + "minecraft:raw_copper_block[]": "minecraft:raw_copper_block[]", + "minecraft:raw_gold_block[]": "minecraft:raw_gold_block[]", + "minecraft:ochre_froglight[pillar_axis=x]": "minecraft:ochre_froglight[axis=x]", + "minecraft:ochre_froglight[pillar_axis=y]": "minecraft:ochre_froglight[axis=y]", + "minecraft:ochre_froglight[pillar_axis=z]": "minecraft:ochre_froglight[axis=z]", + "minecraft:verdant_froglight[pillar_axis=x]": "minecraft:verdant_froglight[axis=x]", + "minecraft:verdant_froglight[pillar_axis=y]": "minecraft:verdant_froglight[axis=y]", + "minecraft:verdant_froglight[pillar_axis=z]": "minecraft:verdant_froglight[axis=z]", + "minecraft:pearlescent_froglight[pillar_axis=x]": "minecraft:pearlescent_froglight[axis=x]", + "minecraft:pearlescent_froglight[pillar_axis=y]": "minecraft:pearlescent_froglight[axis=y]", + "minecraft:pearlescent_froglight[pillar_axis=z]": "minecraft:pearlescent_froglight[axis=z]", + "minecraft:frog_spawn[]": "minecraft:frogspawn[]", + "minecraft:reinforced_deepslate[]": "minecraft:reinforced_deepslate[]", + "minecraft:decorated_pot[direction=0]": "minecraft:decorated_pot[cracked=false,facing=north,waterlogged=false]", + "minecraft:decorated_pot[direction=2]": "minecraft:decorated_pot[cracked=false,facing=south,waterlogged=false]", + "minecraft:decorated_pot[direction=3]": "minecraft:decorated_pot[cracked=false,facing=west,waterlogged=false]", + "minecraft:decorated_pot[direction=1]": "minecraft:decorated_pot[cracked=false,facing=east,waterlogged=false]", + "minecraft:crafter[crafting=1,orientation=down_east,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=down_east,triggered=true]", + "minecraft:crafter[crafting=1,orientation=down_east,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=down_east,triggered=false]", + "minecraft:crafter[crafting=1,orientation=down_north,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=down_north,triggered=true]", + "minecraft:crafter[crafting=1,orientation=down_north,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=down_north,triggered=false]", + "minecraft:crafter[crafting=1,orientation=down_south,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=down_south,triggered=true]", + "minecraft:crafter[crafting=1,orientation=down_south,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=down_south,triggered=false]", + "minecraft:crafter[crafting=1,orientation=down_west,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=down_west,triggered=true]", + "minecraft:crafter[crafting=1,orientation=down_west,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=down_west,triggered=false]", + "minecraft:crafter[crafting=1,orientation=up_east,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=up_east,triggered=true]", + "minecraft:crafter[crafting=1,orientation=up_east,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=up_east,triggered=false]", + "minecraft:crafter[crafting=1,orientation=up_north,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=up_north,triggered=true]", + "minecraft:crafter[crafting=1,orientation=up_north,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=up_north,triggered=false]", + "minecraft:crafter[crafting=1,orientation=up_south,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=up_south,triggered=true]", + "minecraft:crafter[crafting=1,orientation=up_south,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=up_south,triggered=false]", + "minecraft:crafter[crafting=1,orientation=up_west,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=up_west,triggered=true]", + "minecraft:crafter[crafting=1,orientation=up_west,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=up_west,triggered=false]", + "minecraft:crafter[crafting=1,orientation=west_up,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=west_up,triggered=true]", + "minecraft:crafter[crafting=1,orientation=west_up,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=west_up,triggered=false]", + "minecraft:crafter[crafting=1,orientation=east_up,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=east_up,triggered=true]", + "minecraft:crafter[crafting=1,orientation=east_up,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=east_up,triggered=false]", + "minecraft:crafter[crafting=1,orientation=north_up,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=north_up,triggered=true]", + "minecraft:crafter[crafting=1,orientation=north_up,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=north_up,triggered=false]", + "minecraft:crafter[crafting=1,orientation=south_up,triggered_bit=1]": "minecraft:crafter[crafting=true,orientation=south_up,triggered=true]", + "minecraft:crafter[crafting=1,orientation=south_up,triggered_bit=0]": "minecraft:crafter[crafting=true,orientation=south_up,triggered=false]", + "minecraft:crafter[crafting=0,orientation=down_east,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=down_east,triggered=true]", + "minecraft:crafter[crafting=0,orientation=down_east,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=down_east,triggered=false]", + "minecraft:crafter[crafting=0,orientation=down_north,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=down_north,triggered=true]", + "minecraft:crafter[crafting=0,orientation=down_north,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=down_north,triggered=false]", + "minecraft:crafter[crafting=0,orientation=down_south,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=down_south,triggered=true]", + "minecraft:crafter[crafting=0,orientation=down_south,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=down_south,triggered=false]", + "minecraft:crafter[crafting=0,orientation=down_west,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=down_west,triggered=true]", + "minecraft:crafter[crafting=0,orientation=down_west,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=down_west,triggered=false]", + "minecraft:crafter[crafting=0,orientation=up_east,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=up_east,triggered=true]", + "minecraft:crafter[crafting=0,orientation=up_east,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=up_east,triggered=false]", + "minecraft:crafter[crafting=0,orientation=up_north,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=up_north,triggered=true]", + "minecraft:crafter[crafting=0,orientation=up_north,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=up_north,triggered=false]", + "minecraft:crafter[crafting=0,orientation=up_south,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=up_south,triggered=true]", + "minecraft:crafter[crafting=0,orientation=up_south,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=up_south,triggered=false]", + "minecraft:crafter[crafting=0,orientation=up_west,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=up_west,triggered=true]", + "minecraft:crafter[crafting=0,orientation=up_west,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=up_west,triggered=false]", + "minecraft:crafter[crafting=0,orientation=west_up,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=west_up,triggered=true]", + "minecraft:crafter[crafting=0,orientation=west_up,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=west_up,triggered=false]", + "minecraft:crafter[crafting=0,orientation=east_up,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=east_up,triggered=true]", + "minecraft:crafter[crafting=0,orientation=east_up,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=east_up,triggered=false]", + "minecraft:crafter[crafting=0,orientation=north_up,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=north_up,triggered=true]", + "minecraft:crafter[crafting=0,orientation=north_up,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=north_up,triggered=false]", + "minecraft:crafter[crafting=0,orientation=south_up,triggered_bit=1]": "minecraft:crafter[crafting=false,orientation=south_up,triggered=true]", + "minecraft:crafter[crafting=0,orientation=south_up,triggered_bit=0]": "minecraft:crafter[crafting=false,orientation=south_up,triggered=false]", + "minecraft:trial_spawner[ominous=1,trial_spawner_state=0]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=inactive]", + "minecraft:trial_spawner[ominous=1,trial_spawner_state=1]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=waiting_for_players]", + "minecraft:trial_spawner[ominous=1,trial_spawner_state=2]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=active]", + "minecraft:trial_spawner[ominous=1,trial_spawner_state=3]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=waiting_for_reward_ejection]", + "minecraft:trial_spawner[ominous=1,trial_spawner_state=4]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=ejecting_reward]", + "minecraft:trial_spawner[ominous=1,trial_spawner_state=5]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=cooldown]", + "minecraft:trial_spawner[ominous=0,trial_spawner_state=0]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=inactive]", + "minecraft:trial_spawner[ominous=0,trial_spawner_state=1]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=waiting_for_players]", + "minecraft:trial_spawner[ominous=0,trial_spawner_state=2]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=active]", + "minecraft:trial_spawner[ominous=0,trial_spawner_state=3]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=waiting_for_reward_ejection]", + "minecraft:trial_spawner[ominous=0,trial_spawner_state=4]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=ejecting_reward]", + "minecraft:trial_spawner[ominous=0,trial_spawner_state=5]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=cooldown]", + "minecraft:vault[minecraft:cardinal_direction=north,ominous=1,vault_state=inactive]": "minecraft:vault[facing=north,ominous=true,vault_state=inactive]", + "minecraft:vault[minecraft:cardinal_direction=north,ominous=1,vault_state=active]": "minecraft:vault[facing=north,ominous=true,vault_state=active]", + "minecraft:vault[minecraft:cardinal_direction=north,ominous=1,vault_state=unlocking]": "minecraft:vault[facing=north,ominous=true,vault_state=unlocking]", + "minecraft:vault[minecraft:cardinal_direction=north,ominous=1,vault_state=ejecting]": "minecraft:vault[facing=north,ominous=true,vault_state=ejecting]", + "minecraft:vault[minecraft:cardinal_direction=north,ominous=0,vault_state=inactive]": "minecraft:vault[facing=north,ominous=false,vault_state=inactive]", + "minecraft:vault[minecraft:cardinal_direction=north,ominous=0,vault_state=active]": "minecraft:vault[facing=north,ominous=false,vault_state=active]", + "minecraft:vault[minecraft:cardinal_direction=north,ominous=0,vault_state=unlocking]": "minecraft:vault[facing=north,ominous=false,vault_state=unlocking]", + "minecraft:vault[minecraft:cardinal_direction=north,ominous=0,vault_state=ejecting]": "minecraft:vault[facing=north,ominous=false,vault_state=ejecting]", + "minecraft:vault[minecraft:cardinal_direction=south,ominous=1,vault_state=inactive]": "minecraft:vault[facing=south,ominous=true,vault_state=inactive]", + "minecraft:vault[minecraft:cardinal_direction=south,ominous=1,vault_state=active]": "minecraft:vault[facing=south,ominous=true,vault_state=active]", + "minecraft:vault[minecraft:cardinal_direction=south,ominous=1,vault_state=unlocking]": "minecraft:vault[facing=south,ominous=true,vault_state=unlocking]", + "minecraft:vault[minecraft:cardinal_direction=south,ominous=1,vault_state=ejecting]": "minecraft:vault[facing=south,ominous=true,vault_state=ejecting]", + "minecraft:vault[minecraft:cardinal_direction=south,ominous=0,vault_state=inactive]": "minecraft:vault[facing=south,ominous=false,vault_state=inactive]", + "minecraft:vault[minecraft:cardinal_direction=south,ominous=0,vault_state=active]": "minecraft:vault[facing=south,ominous=false,vault_state=active]", + "minecraft:vault[minecraft:cardinal_direction=south,ominous=0,vault_state=unlocking]": "minecraft:vault[facing=south,ominous=false,vault_state=unlocking]", + "minecraft:vault[minecraft:cardinal_direction=south,ominous=0,vault_state=ejecting]": "minecraft:vault[facing=south,ominous=false,vault_state=ejecting]", + "minecraft:vault[minecraft:cardinal_direction=west,ominous=1,vault_state=inactive]": "minecraft:vault[facing=west,ominous=true,vault_state=inactive]", + "minecraft:vault[minecraft:cardinal_direction=west,ominous=1,vault_state=active]": "minecraft:vault[facing=west,ominous=true,vault_state=active]", + "minecraft:vault[minecraft:cardinal_direction=west,ominous=1,vault_state=unlocking]": "minecraft:vault[facing=west,ominous=true,vault_state=unlocking]", + "minecraft:vault[minecraft:cardinal_direction=west,ominous=1,vault_state=ejecting]": "minecraft:vault[facing=west,ominous=true,vault_state=ejecting]", + "minecraft:vault[minecraft:cardinal_direction=west,ominous=0,vault_state=inactive]": "minecraft:vault[facing=west,ominous=false,vault_state=inactive]", + "minecraft:vault[minecraft:cardinal_direction=west,ominous=0,vault_state=active]": "minecraft:vault[facing=west,ominous=false,vault_state=active]", + "minecraft:vault[minecraft:cardinal_direction=west,ominous=0,vault_state=unlocking]": "minecraft:vault[facing=west,ominous=false,vault_state=unlocking]", + "minecraft:vault[minecraft:cardinal_direction=west,ominous=0,vault_state=ejecting]": "minecraft:vault[facing=west,ominous=false,vault_state=ejecting]", + "minecraft:vault[minecraft:cardinal_direction=east,ominous=1,vault_state=inactive]": "minecraft:vault[facing=east,ominous=true,vault_state=inactive]", + "minecraft:vault[minecraft:cardinal_direction=east,ominous=1,vault_state=active]": "minecraft:vault[facing=east,ominous=true,vault_state=active]", + "minecraft:vault[minecraft:cardinal_direction=east,ominous=1,vault_state=unlocking]": "minecraft:vault[facing=east,ominous=true,vault_state=unlocking]", + "minecraft:vault[minecraft:cardinal_direction=east,ominous=1,vault_state=ejecting]": "minecraft:vault[facing=east,ominous=true,vault_state=ejecting]", + "minecraft:vault[minecraft:cardinal_direction=east,ominous=0,vault_state=inactive]": "minecraft:vault[facing=east,ominous=false,vault_state=inactive]", + "minecraft:vault[minecraft:cardinal_direction=east,ominous=0,vault_state=active]": "minecraft:vault[facing=east,ominous=false,vault_state=active]", + "minecraft:vault[minecraft:cardinal_direction=east,ominous=0,vault_state=unlocking]": "minecraft:vault[facing=east,ominous=false,vault_state=unlocking]", + "minecraft:vault[minecraft:cardinal_direction=east,ominous=0,vault_state=ejecting]": "minecraft:vault[facing=east,ominous=false,vault_state=ejecting]", + "minecraft:heavy_core[]": "minecraft:heavy_core[waterlogged=false]", + "minecraft:flowing_water[liquid_depth=0]": "minecraft:water[level=0]", + "minecraft:flowing_lava[liquid_depth=0]": "minecraft:lava[level=0]", + "minecraft:water[liquid_depth=1]": "minecraft:water[level=1]", + "minecraft:water[liquid_depth=2]": "minecraft:water[level=2]", + "minecraft:water[liquid_depth=3]": "minecraft:water[level=3]", + "minecraft:water[liquid_depth=4]": "minecraft:water[level=4]", + "minecraft:water[liquid_depth=5]": "minecraft:water[level=5]", + "minecraft:water[liquid_depth=6]": "minecraft:water[level=6]", + "minecraft:water[liquid_depth=7]": "minecraft:water[level=7]", + "minecraft:water[liquid_depth=8]": "minecraft:water[level=8]", + "minecraft:water[liquid_depth=9]": "minecraft:water[level=9]", + "minecraft:water[liquid_depth=10]": "minecraft:water[level=10]", + "minecraft:water[liquid_depth=11]": "minecraft:water[level=11]", + "minecraft:water[liquid_depth=12]": "minecraft:water[level=12]", + "minecraft:water[liquid_depth=13]": "minecraft:water[level=13]", + "minecraft:water[liquid_depth=14]": "minecraft:water[level=14]", + "minecraft:water[liquid_depth=15]": "minecraft:water[level=15]", + "minecraft:lava[liquid_depth=1]": "minecraft:lava[level=1]", + "minecraft:lava[liquid_depth=2]": "minecraft:lava[level=2]", + "minecraft:lava[liquid_depth=3]": "minecraft:lava[level=3]", + "minecraft:lava[liquid_depth=4]": "minecraft:lava[level=4]", + "minecraft:lava[liquid_depth=5]": "minecraft:lava[level=5]", + "minecraft:lava[liquid_depth=6]": "minecraft:lava[level=6]", + "minecraft:lava[liquid_depth=7]": "minecraft:lava[level=7]", + "minecraft:lava[liquid_depth=8]": "minecraft:lava[level=8]", + "minecraft:lava[liquid_depth=9]": "minecraft:lava[level=9]", + "minecraft:lava[liquid_depth=10]": "minecraft:lava[level=10]", + "minecraft:lava[liquid_depth=11]": "minecraft:lava[level=11]", + "minecraft:lava[liquid_depth=12]": "minecraft:lava[level=12]", + "minecraft:lava[liquid_depth=13]": "minecraft:lava[level=13]", + "minecraft:lava[liquid_depth=14]": "minecraft:lava[level=14]", + "minecraft:lava[liquid_depth=15]": "minecraft:lava[level=15]" +} \ No newline at end of file diff --git a/data/bedrock/1.21.0/blocksJ2B.json b/data/bedrock/1.21.0/blocksJ2B.json new file mode 100644 index 000000000..49725c93a --- /dev/null +++ b/data/bedrock/1.21.0/blocksJ2B.json @@ -0,0 +1,26686 @@ +{ + "minecraft:air[]": "minecraft:air[]", + "minecraft:stone[]": "minecraft:stone[]", + "minecraft:granite[]": "minecraft:granite[]", + "minecraft:polished_granite[]": "minecraft:polished_granite[]", + "minecraft:diorite[]": "minecraft:diorite[]", + "minecraft:polished_diorite[]": "minecraft:polished_diorite[]", + "minecraft:andesite[]": "minecraft:andesite[]", + "minecraft:polished_andesite[]": "minecraft:polished_andesite[]", + "minecraft:grass_block[snowy=true]": "minecraft:grass_block[]", + "minecraft:grass_block[snowy=false]": "minecraft:grass_block[]", + "minecraft:dirt[]": "minecraft:dirt[dirt_type=normal]", + "minecraft:coarse_dirt[]": "minecraft:dirt[dirt_type=coarse]", + "minecraft:podzol[snowy=true]": "minecraft:podzol[]", + "minecraft:podzol[snowy=false]": "minecraft:podzol[]", + "minecraft:cobblestone[]": "minecraft:cobblestone[]", + "minecraft:oak_planks[]": "minecraft:oak_planks[]", + "minecraft:spruce_planks[]": "minecraft:spruce_planks[]", + "minecraft:birch_planks[]": "minecraft:birch_planks[]", + "minecraft:jungle_planks[]": "minecraft:jungle_planks[]", + "minecraft:acacia_planks[]": "minecraft:acacia_planks[]", + "minecraft:cherry_planks[]": "minecraft:cherry_planks[]", + "minecraft:dark_oak_planks[]": "minecraft:dark_oak_planks[]", + "minecraft:mangrove_planks[]": "minecraft:mangrove_planks[]", + "minecraft:bamboo_planks[]": "minecraft:bamboo_planks[]", + "minecraft:bamboo_mosaic[]": "minecraft:bamboo_mosaic[]", + "minecraft:oak_sapling[stage=0]": "minecraft:oak_sapling[age_bit=false]", + "minecraft:oak_sapling[stage=1]": "minecraft:oak_sapling[age_bit=true]", + "minecraft:spruce_sapling[stage=0]": "minecraft:spruce_sapling[age_bit=false]", + "minecraft:spruce_sapling[stage=1]": "minecraft:spruce_sapling[age_bit=true]", + "minecraft:birch_sapling[stage=0]": "minecraft:birch_sapling[age_bit=false]", + "minecraft:birch_sapling[stage=1]": "minecraft:birch_sapling[age_bit=true]", + "minecraft:jungle_sapling[stage=0]": "minecraft:jungle_sapling[age_bit=false]", + "minecraft:jungle_sapling[stage=1]": "minecraft:jungle_sapling[age_bit=true]", + "minecraft:acacia_sapling[stage=0]": "minecraft:acacia_sapling[age_bit=false]", + "minecraft:acacia_sapling[stage=1]": "minecraft:acacia_sapling[age_bit=true]", + "minecraft:cherry_sapling[stage=0]": "minecraft:cherry_sapling[age_bit=false]", + "minecraft:cherry_sapling[stage=1]": "minecraft:cherry_sapling[age_bit=true]", + "minecraft:dark_oak_sapling[stage=0]": "minecraft:dark_oak_sapling[age_bit=false]", + "minecraft:dark_oak_sapling[stage=1]": "minecraft:dark_oak_sapling[age_bit=true]", + "minecraft:mangrove_propagule[age=0,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=0,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=0,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=0,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=0,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=1,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=1,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=1,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=1,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=1,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=2,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=2,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=2,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=2,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=2,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=2,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=2,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=2,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=3,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=3,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=3,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=3,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=3,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=3,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=3,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=3,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=4,hanging=true,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=4,hanging=true,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=0]", + "minecraft:mangrove_propagule[age=4,hanging=true,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=4,hanging=true,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=true,propagule_stage=1]", + "minecraft:mangrove_propagule[age=4,hanging=false,stage=0,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=4,hanging=false,stage=0,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=0]", + "minecraft:mangrove_propagule[age=4,hanging=false,stage=1,waterlogged=true]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:mangrove_propagule[age=4,hanging=false,stage=1,waterlogged=false]": "minecraft:mangrove_propagule[hanging=false,propagule_stage=1]", + "minecraft:bedrock[]": "minecraft:bedrock[infiniburn_bit=false]", + "minecraft:water[level=0]": "minecraft:water[liquid_depth=0]", + "minecraft:water[level=1]": "minecraft:flowing_water[liquid_depth=1]", + "minecraft:water[level=2]": "minecraft:flowing_water[liquid_depth=2]", + "minecraft:water[level=3]": "minecraft:flowing_water[liquid_depth=3]", + "minecraft:water[level=4]": "minecraft:flowing_water[liquid_depth=4]", + "minecraft:water[level=5]": "minecraft:flowing_water[liquid_depth=5]", + "minecraft:water[level=6]": "minecraft:flowing_water[liquid_depth=6]", + "minecraft:water[level=7]": "minecraft:flowing_water[liquid_depth=7]", + "minecraft:water[level=8]": "minecraft:flowing_water[liquid_depth=8]", + "minecraft:water[level=9]": "minecraft:flowing_water[liquid_depth=9]", + "minecraft:water[level=10]": "minecraft:flowing_water[liquid_depth=10]", + "minecraft:water[level=11]": "minecraft:flowing_water[liquid_depth=11]", + "minecraft:water[level=12]": "minecraft:flowing_water[liquid_depth=12]", + "minecraft:water[level=13]": "minecraft:flowing_water[liquid_depth=13]", + "minecraft:water[level=14]": "minecraft:flowing_water[liquid_depth=14]", + "minecraft:water[level=15]": "minecraft:flowing_water[liquid_depth=15]", + "minecraft:lava[level=0]": "minecraft:lava[liquid_depth=0]", + "minecraft:lava[level=1]": "minecraft:flowing_lava[liquid_depth=1]", + "minecraft:lava[level=2]": "minecraft:flowing_lava[liquid_depth=2]", + "minecraft:lava[level=3]": "minecraft:flowing_lava[liquid_depth=3]", + "minecraft:lava[level=4]": "minecraft:flowing_lava[liquid_depth=4]", + "minecraft:lava[level=5]": "minecraft:flowing_lava[liquid_depth=5]", + "minecraft:lava[level=6]": "minecraft:flowing_lava[liquid_depth=6]", + "minecraft:lava[level=7]": "minecraft:flowing_lava[liquid_depth=7]", + "minecraft:lava[level=8]": "minecraft:flowing_lava[liquid_depth=8]", + "minecraft:lava[level=9]": "minecraft:flowing_lava[liquid_depth=9]", + "minecraft:lava[level=10]": "minecraft:flowing_lava[liquid_depth=10]", + "minecraft:lava[level=11]": "minecraft:flowing_lava[liquid_depth=11]", + "minecraft:lava[level=12]": "minecraft:flowing_lava[liquid_depth=12]", + "minecraft:lava[level=13]": "minecraft:flowing_lava[liquid_depth=13]", + "minecraft:lava[level=14]": "minecraft:flowing_lava[liquid_depth=14]", + "minecraft:lava[level=15]": "minecraft:flowing_lava[liquid_depth=15]", + "minecraft:sand[]": "minecraft:sand[sand_type=normal]", + "minecraft:suspicious_sand[dusted=0]": "minecraft:suspicious_sand[brushed_progress=0,hanging=false]", + "minecraft:suspicious_sand[dusted=1]": "minecraft:suspicious_sand[brushed_progress=1,hanging=false]", + "minecraft:suspicious_sand[dusted=2]": "minecraft:suspicious_sand[brushed_progress=2,hanging=false]", + "minecraft:suspicious_sand[dusted=3]": "minecraft:suspicious_sand[brushed_progress=3,hanging=false]", + "minecraft:red_sand[]": "minecraft:sand[sand_type=red]", + "minecraft:gravel[]": "minecraft:gravel[]", + "minecraft:suspicious_gravel[dusted=0]": "minecraft:suspicious_gravel[brushed_progress=0,hanging=false]", + "minecraft:suspicious_gravel[dusted=1]": "minecraft:suspicious_gravel[brushed_progress=1,hanging=false]", + "minecraft:suspicious_gravel[dusted=2]": "minecraft:suspicious_gravel[brushed_progress=2,hanging=false]", + "minecraft:suspicious_gravel[dusted=3]": "minecraft:suspicious_gravel[brushed_progress=3,hanging=false]", + "minecraft:gold_ore[]": "minecraft:gold_ore[]", + "minecraft:deepslate_gold_ore[]": "minecraft:deepslate_gold_ore[]", + "minecraft:iron_ore[]": "minecraft:iron_ore[]", + "minecraft:deepslate_iron_ore[]": "minecraft:deepslate_iron_ore[]", + "minecraft:coal_ore[]": "minecraft:coal_ore[]", + "minecraft:deepslate_coal_ore[]": "minecraft:deepslate_coal_ore[]", + "minecraft:nether_gold_ore[]": "minecraft:nether_gold_ore[]", + "minecraft:oak_log[axis=x]": "minecraft:oak_log[pillar_axis=x]", + "minecraft:oak_log[axis=y]": "minecraft:oak_log[pillar_axis=y]", + "minecraft:oak_log[axis=z]": "minecraft:oak_log[pillar_axis=z]", + "minecraft:spruce_log[axis=x]": "minecraft:spruce_log[pillar_axis=x]", + "minecraft:spruce_log[axis=y]": "minecraft:spruce_log[pillar_axis=y]", + "minecraft:spruce_log[axis=z]": "minecraft:spruce_log[pillar_axis=z]", + "minecraft:birch_log[axis=x]": "minecraft:birch_log[pillar_axis=x]", + "minecraft:birch_log[axis=y]": "minecraft:birch_log[pillar_axis=y]", + "minecraft:birch_log[axis=z]": "minecraft:birch_log[pillar_axis=z]", + "minecraft:jungle_log[axis=x]": "minecraft:jungle_log[pillar_axis=x]", + "minecraft:jungle_log[axis=y]": "minecraft:jungle_log[pillar_axis=y]", + "minecraft:jungle_log[axis=z]": "minecraft:jungle_log[pillar_axis=z]", + "minecraft:acacia_log[axis=x]": "minecraft:acacia_log[pillar_axis=x]", + "minecraft:acacia_log[axis=y]": "minecraft:acacia_log[pillar_axis=y]", + "minecraft:acacia_log[axis=z]": "minecraft:acacia_log[pillar_axis=z]", + "minecraft:cherry_log[axis=x]": "minecraft:cherry_log[pillar_axis=x]", + "minecraft:cherry_log[axis=y]": "minecraft:cherry_log[pillar_axis=y]", + "minecraft:cherry_log[axis=z]": "minecraft:cherry_log[pillar_axis=z]", + "minecraft:dark_oak_log[axis=x]": "minecraft:dark_oak_log[pillar_axis=x]", + "minecraft:dark_oak_log[axis=y]": "minecraft:dark_oak_log[pillar_axis=y]", + "minecraft:dark_oak_log[axis=z]": "minecraft:dark_oak_log[pillar_axis=z]", + "minecraft:mangrove_log[axis=x]": "minecraft:mangrove_log[pillar_axis=x]", + "minecraft:mangrove_log[axis=y]": "minecraft:mangrove_log[pillar_axis=y]", + "minecraft:mangrove_log[axis=z]": "minecraft:mangrove_log[pillar_axis=z]", + "minecraft:mangrove_roots[waterlogged=true]": "minecraft:mangrove_roots[]", + "minecraft:mangrove_roots[waterlogged=false]": "minecraft:mangrove_roots[]", + "minecraft:muddy_mangrove_roots[axis=x]": "minecraft:muddy_mangrove_roots[pillar_axis=x]", + "minecraft:muddy_mangrove_roots[axis=y]": "minecraft:muddy_mangrove_roots[pillar_axis=y]", + "minecraft:muddy_mangrove_roots[axis=z]": "minecraft:muddy_mangrove_roots[pillar_axis=z]", + "minecraft:bamboo_block[axis=x]": "minecraft:bamboo_block[pillar_axis=x]", + "minecraft:bamboo_block[axis=y]": "minecraft:bamboo_block[pillar_axis=y]", + "minecraft:bamboo_block[axis=z]": "minecraft:bamboo_block[pillar_axis=z]", + "minecraft:stripped_spruce_log[axis=x]": "minecraft:stripped_spruce_log[pillar_axis=x]", + "minecraft:stripped_spruce_log[axis=y]": "minecraft:stripped_spruce_log[pillar_axis=y]", + "minecraft:stripped_spruce_log[axis=z]": "minecraft:stripped_spruce_log[pillar_axis=z]", + "minecraft:stripped_birch_log[axis=x]": "minecraft:stripped_birch_log[pillar_axis=x]", + "minecraft:stripped_birch_log[axis=y]": "minecraft:stripped_birch_log[pillar_axis=y]", + "minecraft:stripped_birch_log[axis=z]": "minecraft:stripped_birch_log[pillar_axis=z]", + "minecraft:stripped_jungle_log[axis=x]": "minecraft:stripped_jungle_log[pillar_axis=x]", + "minecraft:stripped_jungle_log[axis=y]": "minecraft:stripped_jungle_log[pillar_axis=y]", + "minecraft:stripped_jungle_log[axis=z]": "minecraft:stripped_jungle_log[pillar_axis=z]", + "minecraft:stripped_acacia_log[axis=x]": "minecraft:stripped_acacia_log[pillar_axis=x]", + "minecraft:stripped_acacia_log[axis=y]": "minecraft:stripped_acacia_log[pillar_axis=y]", + "minecraft:stripped_acacia_log[axis=z]": "minecraft:stripped_acacia_log[pillar_axis=z]", + "minecraft:stripped_cherry_log[axis=x]": "minecraft:stripped_cherry_log[pillar_axis=x]", + "minecraft:stripped_cherry_log[axis=y]": "minecraft:stripped_cherry_log[pillar_axis=y]", + "minecraft:stripped_cherry_log[axis=z]": "minecraft:stripped_cherry_log[pillar_axis=z]", + "minecraft:stripped_dark_oak_log[axis=x]": "minecraft:stripped_dark_oak_log[pillar_axis=x]", + "minecraft:stripped_dark_oak_log[axis=y]": "minecraft:stripped_dark_oak_log[pillar_axis=y]", + "minecraft:stripped_dark_oak_log[axis=z]": "minecraft:stripped_dark_oak_log[pillar_axis=z]", + "minecraft:stripped_oak_log[axis=x]": "minecraft:stripped_oak_log[pillar_axis=x]", + "minecraft:stripped_oak_log[axis=y]": "minecraft:stripped_oak_log[pillar_axis=y]", + "minecraft:stripped_oak_log[axis=z]": "minecraft:stripped_oak_log[pillar_axis=z]", + "minecraft:stripped_mangrove_log[axis=x]": "minecraft:stripped_mangrove_log[pillar_axis=x]", + "minecraft:stripped_mangrove_log[axis=y]": "minecraft:stripped_mangrove_log[pillar_axis=y]", + "minecraft:stripped_mangrove_log[axis=z]": "minecraft:stripped_mangrove_log[pillar_axis=z]", + "minecraft:stripped_bamboo_block[axis=x]": "minecraft:stripped_bamboo_block[pillar_axis=x]", + "minecraft:stripped_bamboo_block[axis=y]": "minecraft:stripped_bamboo_block[pillar_axis=y]", + "minecraft:stripped_bamboo_block[axis=z]": "minecraft:stripped_bamboo_block[pillar_axis=z]", + "minecraft:oak_wood[axis=x]": "minecraft:oak_wood[pillar_axis=x]", + "minecraft:oak_wood[axis=y]": "minecraft:oak_wood[pillar_axis=y]", + "minecraft:oak_wood[axis=z]": "minecraft:oak_wood[pillar_axis=z]", + "minecraft:spruce_wood[axis=x]": "minecraft:spruce_wood[pillar_axis=x]", + "minecraft:spruce_wood[axis=y]": "minecraft:spruce_wood[pillar_axis=y]", + "minecraft:spruce_wood[axis=z]": "minecraft:spruce_wood[pillar_axis=z]", + "minecraft:birch_wood[axis=x]": "minecraft:birch_wood[pillar_axis=x]", + "minecraft:birch_wood[axis=y]": "minecraft:birch_wood[pillar_axis=y]", + "minecraft:birch_wood[axis=z]": "minecraft:birch_wood[pillar_axis=z]", + "minecraft:jungle_wood[axis=x]": "minecraft:jungle_wood[pillar_axis=x]", + "minecraft:jungle_wood[axis=y]": "minecraft:jungle_wood[pillar_axis=y]", + "minecraft:jungle_wood[axis=z]": "minecraft:jungle_wood[pillar_axis=z]", + "minecraft:acacia_wood[axis=x]": "minecraft:acacia_wood[pillar_axis=x]", + "minecraft:acacia_wood[axis=y]": "minecraft:acacia_wood[pillar_axis=y]", + "minecraft:acacia_wood[axis=z]": "minecraft:acacia_wood[pillar_axis=z]", + "minecraft:cherry_wood[axis=x]": "minecraft:cherry_wood[pillar_axis=x,stripped_bit=false]", + "minecraft:cherry_wood[axis=y]": "minecraft:cherry_wood[pillar_axis=y,stripped_bit=false]", + "minecraft:cherry_wood[axis=z]": "minecraft:cherry_wood[pillar_axis=z,stripped_bit=false]", + "minecraft:dark_oak_wood[axis=x]": "minecraft:dark_oak_wood[pillar_axis=x]", + "minecraft:dark_oak_wood[axis=y]": "minecraft:dark_oak_wood[pillar_axis=y]", + "minecraft:dark_oak_wood[axis=z]": "minecraft:dark_oak_wood[pillar_axis=z]", + "minecraft:mangrove_wood[axis=x]": "minecraft:mangrove_wood[pillar_axis=x,stripped_bit=false]", + "minecraft:mangrove_wood[axis=y]": "minecraft:mangrove_wood[pillar_axis=y,stripped_bit=false]", + "minecraft:mangrove_wood[axis=z]": "minecraft:mangrove_wood[pillar_axis=z,stripped_bit=false]", + "minecraft:stripped_oak_wood[axis=x]": "minecraft:stripped_oak_wood[pillar_axis=x]", + "minecraft:stripped_oak_wood[axis=y]": "minecraft:stripped_oak_wood[pillar_axis=y]", + "minecraft:stripped_oak_wood[axis=z]": "minecraft:stripped_oak_wood[pillar_axis=z]", + "minecraft:stripped_spruce_wood[axis=x]": "minecraft:stripped_spruce_wood[pillar_axis=x]", + "minecraft:stripped_spruce_wood[axis=y]": "minecraft:stripped_spruce_wood[pillar_axis=y]", + "minecraft:stripped_spruce_wood[axis=z]": "minecraft:stripped_spruce_wood[pillar_axis=z]", + "minecraft:stripped_birch_wood[axis=x]": "minecraft:stripped_birch_wood[pillar_axis=x]", + "minecraft:stripped_birch_wood[axis=y]": "minecraft:stripped_birch_wood[pillar_axis=y]", + "minecraft:stripped_birch_wood[axis=z]": "minecraft:stripped_birch_wood[pillar_axis=z]", + "minecraft:stripped_jungle_wood[axis=x]": "minecraft:stripped_jungle_wood[pillar_axis=x]", + "minecraft:stripped_jungle_wood[axis=y]": "minecraft:stripped_jungle_wood[pillar_axis=y]", + "minecraft:stripped_jungle_wood[axis=z]": "minecraft:stripped_jungle_wood[pillar_axis=z]", + "minecraft:stripped_acacia_wood[axis=x]": "minecraft:stripped_acacia_wood[pillar_axis=x]", + "minecraft:stripped_acacia_wood[axis=y]": "minecraft:stripped_acacia_wood[pillar_axis=y]", + "minecraft:stripped_acacia_wood[axis=z]": "minecraft:stripped_acacia_wood[pillar_axis=z]", + "minecraft:stripped_cherry_wood[axis=x]": "minecraft:stripped_cherry_wood[pillar_axis=x]", + "minecraft:stripped_cherry_wood[axis=y]": "minecraft:stripped_cherry_wood[pillar_axis=y]", + "minecraft:stripped_cherry_wood[axis=z]": "minecraft:stripped_cherry_wood[pillar_axis=z]", + "minecraft:stripped_dark_oak_wood[axis=x]": "minecraft:stripped_dark_oak_wood[pillar_axis=x]", + "minecraft:stripped_dark_oak_wood[axis=y]": "minecraft:stripped_dark_oak_wood[pillar_axis=y]", + "minecraft:stripped_dark_oak_wood[axis=z]": "minecraft:stripped_dark_oak_wood[pillar_axis=z]", + "minecraft:stripped_mangrove_wood[axis=x]": "minecraft:stripped_mangrove_wood[pillar_axis=x]", + "minecraft:stripped_mangrove_wood[axis=y]": "minecraft:stripped_mangrove_wood[pillar_axis=y]", + "minecraft:stripped_mangrove_wood[axis=z]": "minecraft:stripped_mangrove_wood[pillar_axis=z]", + "minecraft:oak_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:oak_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:oak_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=true,update_bit=false]", + "minecraft:spruce_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:spruce_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:spruce_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=true,update_bit=false]", + "minecraft:birch_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:birch_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:birch_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=true,update_bit=false]", + "minecraft:jungle_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:jungle_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:jungle_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=true,update_bit=false]", + "minecraft:acacia_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:acacia_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:acacia_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=true,update_bit=false]", + "minecraft:cherry_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:cherry_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:cherry_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=true,update_bit=false]", + "minecraft:dark_oak_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:dark_oak_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:dark_oak_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=true,update_bit=false]", + "minecraft:mangrove_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:mangrove_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:mangrove_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=true,update_bit=false]", + "minecraft:azalea_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:azalea_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:azalea_leaves[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=1,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=1,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=1,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=1,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=2,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=2,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=2,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=2,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=3,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=3,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=3,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=3,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=4,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=4,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=4,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=4,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=5,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=5,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=5,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=5,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=6,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=6,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=6,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=6,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=7,persistent=true,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=7,persistent=true,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=true,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=7,persistent=false,waterlogged=true]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:flowering_azalea_leaves[distance=7,persistent=false,waterlogged=false]": "minecraft:azalea_leaves_flowered[persistent_bit=false,update_bit=false]", + "minecraft:sponge[]": "minecraft:sponge[sponge_type=dry]", + "minecraft:wet_sponge[]": "minecraft:sponge[sponge_type=wet]", + "minecraft:glass[]": "minecraft:glass[]", + "minecraft:lapis_ore[]": "minecraft:lapis_ore[]", + "minecraft:deepslate_lapis_ore[]": "minecraft:deepslate_lapis_ore[]", + "minecraft:lapis_block[]": "minecraft:lapis_block[]", + "minecraft:dispenser[facing=north,triggered=true]": "minecraft:dispenser[facing_direction=2,triggered_bit=true]", + "minecraft:dispenser[facing=north,triggered=false]": "minecraft:dispenser[facing_direction=2,triggered_bit=false]", + "minecraft:dispenser[facing=east,triggered=true]": "minecraft:dispenser[facing_direction=5,triggered_bit=true]", + "minecraft:dispenser[facing=east,triggered=false]": "minecraft:dispenser[facing_direction=5,triggered_bit=false]", + "minecraft:dispenser[facing=south,triggered=true]": "minecraft:dispenser[facing_direction=3,triggered_bit=true]", + "minecraft:dispenser[facing=south,triggered=false]": "minecraft:dispenser[facing_direction=3,triggered_bit=false]", + "minecraft:dispenser[facing=west,triggered=true]": "minecraft:dispenser[facing_direction=4,triggered_bit=true]", + "minecraft:dispenser[facing=west,triggered=false]": "minecraft:dispenser[facing_direction=4,triggered_bit=false]", + "minecraft:dispenser[facing=up,triggered=true]": "minecraft:dispenser[facing_direction=1,triggered_bit=true]", + "minecraft:dispenser[facing=up,triggered=false]": "minecraft:dispenser[facing_direction=1,triggered_bit=false]", + "minecraft:dispenser[facing=down,triggered=true]": "minecraft:dispenser[facing_direction=0,triggered_bit=true]", + "minecraft:dispenser[facing=down,triggered=false]": "minecraft:dispenser[facing_direction=0,triggered_bit=false]", + "minecraft:sandstone[]": "minecraft:sandstone[sand_stone_type=default]", + "minecraft:chiseled_sandstone[]": "minecraft:sandstone[sand_stone_type=heiroglyphs]", + "minecraft:cut_sandstone[]": "minecraft:sandstone[sand_stone_type=cut]", + "minecraft:note_block[instrument=harp,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=harp,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=basedrum,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=snare,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=hat,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bass,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=flute,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bell,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=guitar,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=chime,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=xylophone,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=iron_xylophone,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=cow_bell,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=didgeridoo,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=bit,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=banjo,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=pling,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=zombie,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=skeleton,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=creeper,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=dragon,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=wither_skeleton,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=piglin,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=0,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=0,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=1,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=1,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=2,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=2,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=3,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=3,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=4,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=4,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=5,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=5,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=6,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=6,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=7,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=7,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=8,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=8,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=9,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=9,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=10,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=10,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=11,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=11,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=12,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=12,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=13,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=13,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=14,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=14,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=15,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=15,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=16,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=16,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=17,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=17,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=18,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=18,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=19,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=19,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=20,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=20,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=21,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=21,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=22,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=22,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=23,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=23,powered=false]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=24,powered=true]": "minecraft:noteblock[]", + "minecraft:note_block[instrument=custom_head,note=24,powered=false]": "minecraft:noteblock[]", + "minecraft:white_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:white_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:white_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:white_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:white_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:white_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:white_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:white_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:white_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:white_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:white_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:white_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:white_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:white_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:white_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:white_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:orange_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:orange_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:orange_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:orange_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:orange_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:orange_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:orange_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:orange_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:orange_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:orange_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:orange_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:orange_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:orange_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:orange_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:orange_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:orange_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:magenta_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:magenta_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:magenta_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:magenta_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:magenta_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:magenta_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:magenta_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:magenta_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:magenta_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:magenta_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:magenta_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:magenta_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:magenta_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:magenta_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:magenta_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:magenta_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_blue_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_blue_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_blue_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_blue_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_blue_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_blue_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_blue_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_blue_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_blue_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_blue_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_blue_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_blue_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_blue_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_blue_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_blue_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_blue_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:yellow_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:yellow_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:yellow_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:yellow_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:yellow_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:yellow_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:yellow_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:yellow_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:yellow_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:yellow_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:yellow_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:yellow_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:yellow_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:yellow_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:yellow_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:yellow_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:lime_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:lime_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:lime_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:lime_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:lime_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:lime_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:lime_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:lime_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:lime_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:lime_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:lime_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:lime_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:lime_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:lime_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:lime_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:lime_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:pink_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:pink_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:pink_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:pink_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:pink_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:pink_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:pink_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:pink_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:pink_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:pink_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:pink_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:pink_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:pink_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:pink_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:pink_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:pink_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:gray_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:gray_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:gray_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:gray_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:gray_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:gray_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:gray_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:gray_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:gray_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:gray_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:gray_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:gray_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:gray_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:gray_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:gray_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:gray_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_gray_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_gray_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_gray_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_gray_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_gray_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_gray_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_gray_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_gray_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_gray_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_gray_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_gray_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_gray_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:light_gray_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:light_gray_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:light_gray_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:light_gray_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:cyan_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:cyan_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:cyan_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:cyan_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:cyan_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:cyan_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:cyan_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:cyan_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:cyan_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:cyan_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:cyan_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:cyan_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:cyan_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:cyan_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:cyan_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:cyan_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:purple_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:purple_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:purple_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:purple_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:purple_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:purple_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:purple_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:purple_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:purple_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:purple_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:purple_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:purple_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:purple_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:purple_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:purple_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:purple_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:blue_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:blue_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:blue_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:blue_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:blue_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:blue_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:blue_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:blue_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:blue_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:blue_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:blue_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:blue_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:blue_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:blue_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:blue_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:blue_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:brown_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:brown_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:brown_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:brown_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:brown_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:brown_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:brown_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:brown_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:brown_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:brown_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:brown_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:brown_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:brown_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:brown_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:brown_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:brown_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:green_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:green_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:green_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:green_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:green_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:green_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:green_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:green_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:green_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:green_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:green_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:green_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:green_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:green_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:green_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:green_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:red_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:red_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:red_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:red_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:red_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:red_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:red_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:red_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:red_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:red_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:red_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:red_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:red_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:red_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:red_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:red_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:black_bed[facing=north,occupied=true,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=true]", + "minecraft:black_bed[facing=north,occupied=true,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=true]", + "minecraft:black_bed[facing=north,occupied=false,part=head]": "minecraft:bed[direction=2,head_piece_bit=true,occupied_bit=false]", + "minecraft:black_bed[facing=north,occupied=false,part=foot]": "minecraft:bed[direction=2,head_piece_bit=false,occupied_bit=false]", + "minecraft:black_bed[facing=south,occupied=true,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=true]", + "minecraft:black_bed[facing=south,occupied=true,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=true]", + "minecraft:black_bed[facing=south,occupied=false,part=head]": "minecraft:bed[direction=0,head_piece_bit=true,occupied_bit=false]", + "minecraft:black_bed[facing=south,occupied=false,part=foot]": "minecraft:bed[direction=0,head_piece_bit=false,occupied_bit=false]", + "minecraft:black_bed[facing=west,occupied=true,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=true]", + "minecraft:black_bed[facing=west,occupied=true,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=true]", + "minecraft:black_bed[facing=west,occupied=false,part=head]": "minecraft:bed[direction=1,head_piece_bit=true,occupied_bit=false]", + "minecraft:black_bed[facing=west,occupied=false,part=foot]": "minecraft:bed[direction=1,head_piece_bit=false,occupied_bit=false]", + "minecraft:black_bed[facing=east,occupied=true,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=true]", + "minecraft:black_bed[facing=east,occupied=true,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=true]", + "minecraft:black_bed[facing=east,occupied=false,part=head]": "minecraft:bed[direction=3,head_piece_bit=true,occupied_bit=false]", + "minecraft:black_bed[facing=east,occupied=false,part=foot]": "minecraft:bed[direction=3,head_piece_bit=false,occupied_bit=false]", + "minecraft:powered_rail[powered=true,shape=north_south,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:powered_rail[powered=true,shape=north_south,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:powered_rail[powered=true,shape=east_west,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:powered_rail[powered=true,shape=east_west,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:powered_rail[powered=false,shape=north_south,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:powered_rail[powered=false,shape=north_south,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:powered_rail[powered=false,shape=east_west,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:powered_rail[powered=false,shape=east_west,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=true]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=false]": "minecraft:golden_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:detector_rail[powered=true,shape=north_south,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:detector_rail[powered=true,shape=north_south,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:detector_rail[powered=true,shape=east_west,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:detector_rail[powered=true,shape=east_west,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:detector_rail[powered=false,shape=north_south,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:detector_rail[powered=false,shape=north_south,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:detector_rail[powered=false,shape=east_west,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:detector_rail[powered=false,shape=east_west,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false]": "minecraft:detector_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:sticky_piston[extended=true,facing=north]": "minecraft:sticky_piston[facing_direction=3]", + "minecraft:sticky_piston[extended=true,facing=east]": "minecraft:sticky_piston[facing_direction=4]", + "minecraft:sticky_piston[extended=true,facing=south]": "minecraft:sticky_piston[facing_direction=2]", + "minecraft:sticky_piston[extended=true,facing=west]": "minecraft:sticky_piston[facing_direction=5]", + "minecraft:sticky_piston[extended=true,facing=up]": "minecraft:sticky_piston[facing_direction=1]", + "minecraft:sticky_piston[extended=true,facing=down]": "minecraft:sticky_piston[facing_direction=0]", + "minecraft:sticky_piston[extended=false,facing=north]": "minecraft:sticky_piston[facing_direction=3]", + "minecraft:sticky_piston[extended=false,facing=east]": "minecraft:sticky_piston[facing_direction=4]", + "minecraft:sticky_piston[extended=false,facing=south]": "minecraft:sticky_piston[facing_direction=2]", + "minecraft:sticky_piston[extended=false,facing=west]": "minecraft:sticky_piston[facing_direction=5]", + "minecraft:sticky_piston[extended=false,facing=up]": "minecraft:sticky_piston[facing_direction=1]", + "minecraft:sticky_piston[extended=false,facing=down]": "minecraft:sticky_piston[facing_direction=0]", + "minecraft:cobweb[]": "minecraft:web[]", + "minecraft:short_grass[]": "minecraft:short_grass[]", + "minecraft:fern[]": "minecraft:fern[]", + "minecraft:dead_bush[]": "minecraft:deadbush[]", + "minecraft:seagrass[]": "minecraft:seagrass[sea_grass_type=default]", + "minecraft:tall_seagrass[half=upper]": "minecraft:seagrass[sea_grass_type=double_top]", + "minecraft:tall_seagrass[half=lower]": "minecraft:seagrass[sea_grass_type=double_bot]", + "minecraft:piston[extended=true,facing=north]": "minecraft:piston[facing_direction=3]", + "minecraft:piston[extended=true,facing=east]": "minecraft:piston[facing_direction=4]", + "minecraft:piston[extended=true,facing=south]": "minecraft:piston[facing_direction=2]", + "minecraft:piston[extended=true,facing=west]": "minecraft:piston[facing_direction=5]", + "minecraft:piston[extended=true,facing=up]": "minecraft:piston[facing_direction=1]", + "minecraft:piston[extended=true,facing=down]": "minecraft:piston[facing_direction=0]", + "minecraft:piston[extended=false,facing=north]": "minecraft:piston[facing_direction=3]", + "minecraft:piston[extended=false,facing=east]": "minecraft:piston[facing_direction=4]", + "minecraft:piston[extended=false,facing=south]": "minecraft:piston[facing_direction=2]", + "minecraft:piston[extended=false,facing=west]": "minecraft:piston[facing_direction=5]", + "minecraft:piston[extended=false,facing=up]": "minecraft:piston[facing_direction=1]", + "minecraft:piston[extended=false,facing=down]": "minecraft:piston[facing_direction=0]", + "minecraft:piston_head[facing=north,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=3]", + "minecraft:piston_head[facing=north,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=3]", + "minecraft:piston_head[facing=north,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=3]", + "minecraft:piston_head[facing=north,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=3]", + "minecraft:piston_head[facing=east,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=4]", + "minecraft:piston_head[facing=east,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=4]", + "minecraft:piston_head[facing=east,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=4]", + "minecraft:piston_head[facing=east,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=4]", + "minecraft:piston_head[facing=south,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=2]", + "minecraft:piston_head[facing=south,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=2]", + "minecraft:piston_head[facing=south,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=2]", + "minecraft:piston_head[facing=south,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=2]", + "minecraft:piston_head[facing=west,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=5]", + "minecraft:piston_head[facing=west,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=5]", + "minecraft:piston_head[facing=west,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=5]", + "minecraft:piston_head[facing=west,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=5]", + "minecraft:piston_head[facing=up,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=1]", + "minecraft:piston_head[facing=up,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=1]", + "minecraft:piston_head[facing=up,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=1]", + "minecraft:piston_head[facing=up,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=1]", + "minecraft:piston_head[facing=down,short=true,type=normal]": "minecraft:piston_arm_collision[facing_direction=0]", + "minecraft:piston_head[facing=down,short=true,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=0]", + "minecraft:piston_head[facing=down,short=false,type=normal]": "minecraft:piston_arm_collision[facing_direction=0]", + "minecraft:piston_head[facing=down,short=false,type=sticky]": "minecraft:sticky_piston_arm_collision[facing_direction=0]", + "minecraft:white_wool[]": "minecraft:white_wool[]", + "minecraft:orange_wool[]": "minecraft:orange_wool[]", + "minecraft:magenta_wool[]": "minecraft:magenta_wool[]", + "minecraft:light_blue_wool[]": "minecraft:light_blue_wool[]", + "minecraft:yellow_wool[]": "minecraft:yellow_wool[]", + "minecraft:lime_wool[]": "minecraft:lime_wool[]", + "minecraft:pink_wool[]": "minecraft:pink_wool[]", + "minecraft:gray_wool[]": "minecraft:gray_wool[]", + "minecraft:light_gray_wool[]": "minecraft:light_gray_wool[]", + "minecraft:cyan_wool[]": "minecraft:cyan_wool[]", + "minecraft:purple_wool[]": "minecraft:purple_wool[]", + "minecraft:blue_wool[]": "minecraft:blue_wool[]", + "minecraft:brown_wool[]": "minecraft:brown_wool[]", + "minecraft:green_wool[]": "minecraft:green_wool[]", + "minecraft:red_wool[]": "minecraft:red_wool[]", + "minecraft:black_wool[]": "minecraft:black_wool[]", + "minecraft:moving_piston[facing=north,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=north,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=east,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=east,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=south,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=south,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=west,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=west,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=up,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=up,type=sticky]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=down,type=normal]": "minecraft:moving_block[]", + "minecraft:moving_piston[facing=down,type=sticky]": "minecraft:moving_block[]", + "minecraft:dandelion[]": "minecraft:yellow_flower[]", + "minecraft:torchflower[]": "minecraft:torchflower[]", + "minecraft:poppy[]": "minecraft:poppy[]", + "minecraft:blue_orchid[]": "minecraft:blue_orchid[]", + "minecraft:allium[]": "minecraft:allium[]", + "minecraft:azure_bluet[]": "minecraft:azure_bluet[]", + "minecraft:red_tulip[]": "minecraft:red_tulip[]", + "minecraft:orange_tulip[]": "minecraft:orange_tulip[]", + "minecraft:white_tulip[]": "minecraft:white_tulip[]", + "minecraft:pink_tulip[]": "minecraft:pink_tulip[]", + "minecraft:oxeye_daisy[]": "minecraft:oxeye_daisy[]", + "minecraft:cornflower[]": "minecraft:cornflower[]", + "minecraft:wither_rose[]": "minecraft:wither_rose[]", + "minecraft:lily_of_the_valley[]": "minecraft:lily_of_the_valley[]", + "minecraft:brown_mushroom[]": "minecraft:brown_mushroom[]", + "minecraft:red_mushroom[]": "minecraft:red_mushroom[]", + "minecraft:gold_block[]": "minecraft:gold_block[]", + "minecraft:iron_block[]": "minecraft:iron_block[]", + "minecraft:bricks[]": "minecraft:brick_block[]", + "minecraft:tnt[unstable=true]": "minecraft:tnt[allow_underwater_bit=true,explode_bit=false]", + "minecraft:tnt[unstable=false]": "minecraft:tnt[allow_underwater_bit=false,explode_bit=false]", + "minecraft:bookshelf[]": "minecraft:bookshelf[]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=63,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=31,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=47,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=15,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=55,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=23,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=39,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=7,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=59,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=27,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=43,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=11,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=51,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=19,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=35,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=3,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=61,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=29,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=45,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=13,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=53,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=21,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=37,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=5,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=57,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=25,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=41,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=9,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=49,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=17,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=33,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=1,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=62,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=30,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=46,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=14,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=54,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=22,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=38,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=6,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=58,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=26,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=42,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=10,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=50,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=18,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=34,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=2,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=60,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=28,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=44,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=12,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=52,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=20,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=36,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=4,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=56,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=24,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=40,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=8,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=48,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=16,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=32,direction=2]", + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=0,direction=2]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=63,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=31,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=47,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=15,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=55,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=23,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=39,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=7,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=59,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=27,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=43,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=11,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=51,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=19,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=35,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=3,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=61,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=29,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=45,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=13,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=53,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=21,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=37,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=5,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=57,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=25,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=41,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=9,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=49,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=17,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=33,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=1,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=62,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=30,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=46,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=14,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=54,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=22,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=38,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=6,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=58,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=26,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=42,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=10,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=50,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=18,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=34,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=2,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=60,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=28,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=44,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=12,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=52,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=20,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=36,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=4,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=56,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=24,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=40,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=8,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=48,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=16,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=32,direction=0]", + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=0,direction=0]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=63,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=31,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=47,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=15,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=55,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=23,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=39,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=7,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=59,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=27,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=43,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=11,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=51,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=19,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=35,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=3,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=61,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=29,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=45,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=13,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=53,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=21,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=37,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=5,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=57,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=25,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=41,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=9,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=49,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=17,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=33,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=1,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=62,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=30,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=46,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=14,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=54,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=22,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=38,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=6,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=58,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=26,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=42,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=10,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=50,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=18,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=34,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=2,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=60,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=28,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=44,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=12,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=52,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=20,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=36,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=4,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=56,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=24,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=40,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=8,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=48,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=16,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=32,direction=1]", + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=0,direction=1]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=63,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=31,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=47,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=15,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=55,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=23,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=39,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=7,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=59,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=27,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=43,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=11,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=51,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=19,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=35,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=3,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=61,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=29,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=45,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=13,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=53,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=21,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=37,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=5,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=57,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=25,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=41,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=9,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=49,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=17,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=33,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=1,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=62,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=30,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=46,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=14,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=54,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=22,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=38,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=6,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=58,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=26,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=42,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=10,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=50,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=18,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=34,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=2,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=60,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=28,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=44,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=12,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=52,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=20,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=36,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=4,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=56,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=24,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=40,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=8,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=48,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=16,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": "minecraft:chiseled_bookshelf[books_stored=32,direction=3]", + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": "minecraft:chiseled_bookshelf[books_stored=0,direction=3]", + "minecraft:mossy_cobblestone[]": "minecraft:mossy_cobblestone[]", + "minecraft:obsidian[]": "minecraft:obsidian[]", + "minecraft:torch[]": "minecraft:torch[torch_facing_direction=top]", + "minecraft:wall_torch[facing=north]": "minecraft:torch[torch_facing_direction=south]", + "minecraft:wall_torch[facing=south]": "minecraft:torch[torch_facing_direction=north]", + "minecraft:wall_torch[facing=west]": "minecraft:torch[torch_facing_direction=east]", + "minecraft:wall_torch[facing=east]": "minecraft:torch[torch_facing_direction=west]", + "minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=0]", + "minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=0]", + "minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=1]", + "minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=1]", + "minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=2]", + "minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=2]", + "minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=3]", + "minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=3]", + "minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=4]", + "minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=4]", + "minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=5]", + "minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=5]", + "minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=6]", + "minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=6]", + "minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=7]", + "minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=7]", + "minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=8]", + "minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=8]", + "minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=9]", + "minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=9]", + "minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=10]", + "minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=10]", + "minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=11]", + "minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=11]", + "minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=12]", + "minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=12]", + "minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=13]", + "minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=13]", + "minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=14]", + "minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=14]", + "minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=false]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=true]": "minecraft:fire[age=15]", + "minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false]": "minecraft:fire[age=15]", + "minecraft:soul_fire[]": "minecraft:soul_fire[age=0]", + "minecraft:spawner[]": "minecraft:mob_spawner[]", + "minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:chest[facing=north,type=single,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=single,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=left,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=left,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=right,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=north,type=right,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=north]", + "minecraft:chest[facing=south,type=single,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=single,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=left,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=left,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=right,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=south,type=right,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=south]", + "minecraft:chest[facing=west,type=single,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=single,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=left,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=left,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=right,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=west,type=right,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=west]", + "minecraft:chest[facing=east,type=single,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=single,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=left,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=left,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=right,waterlogged=true]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:chest[facing=east,type=right,waterlogged=false]": "minecraft:chest[minecraft:cardinal_direction=east]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=0]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=1]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=2]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=3]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=4]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=5]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=6]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=7]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=8]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=9]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=10]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=11]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=12]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=13]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=14]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=up]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=side]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=none]": "minecraft:redstone_wire[redstone_signal=15]", + "minecraft:diamond_ore[]": "minecraft:diamond_ore[]", + "minecraft:deepslate_diamond_ore[]": "minecraft:deepslate_diamond_ore[]", + "minecraft:diamond_block[]": "minecraft:diamond_block[]", + "minecraft:crafting_table[]": "minecraft:crafting_table[]", + "minecraft:wheat[age=0]": "minecraft:wheat[growth=0]", + "minecraft:wheat[age=1]": "minecraft:wheat[growth=1]", + "minecraft:wheat[age=2]": "minecraft:wheat[growth=2]", + "minecraft:wheat[age=3]": "minecraft:wheat[growth=3]", + "minecraft:wheat[age=4]": "minecraft:wheat[growth=4]", + "minecraft:wheat[age=5]": "minecraft:wheat[growth=5]", + "minecraft:wheat[age=6]": "minecraft:wheat[growth=6]", + "minecraft:wheat[age=7]": "minecraft:wheat[growth=7]", + "minecraft:farmland[moisture=0]": "minecraft:farmland[moisturized_amount=0]", + "minecraft:farmland[moisture=1]": "minecraft:farmland[moisturized_amount=1]", + "minecraft:farmland[moisture=2]": "minecraft:farmland[moisturized_amount=2]", + "minecraft:farmland[moisture=3]": "minecraft:farmland[moisturized_amount=3]", + "minecraft:farmland[moisture=4]": "minecraft:farmland[moisturized_amount=4]", + "minecraft:farmland[moisture=5]": "minecraft:farmland[moisturized_amount=5]", + "minecraft:farmland[moisture=6]": "minecraft:farmland[moisturized_amount=6]", + "minecraft:farmland[moisture=7]": "minecraft:farmland[moisturized_amount=7]", + "minecraft:furnace[facing=north,lit=true]": "minecraft:lit_furnace[minecraft:cardinal_direction=north]", + "minecraft:furnace[facing=north,lit=false]": "minecraft:furnace[minecraft:cardinal_direction=north]", + "minecraft:furnace[facing=south,lit=true]": "minecraft:lit_furnace[minecraft:cardinal_direction=south]", + "minecraft:furnace[facing=south,lit=false]": "minecraft:furnace[minecraft:cardinal_direction=south]", + "minecraft:furnace[facing=west,lit=true]": "minecraft:lit_furnace[minecraft:cardinal_direction=west]", + "minecraft:furnace[facing=west,lit=false]": "minecraft:furnace[minecraft:cardinal_direction=west]", + "minecraft:furnace[facing=east,lit=true]": "minecraft:lit_furnace[minecraft:cardinal_direction=east]", + "minecraft:furnace[facing=east,lit=false]": "minecraft:furnace[minecraft:cardinal_direction=east]", + "minecraft:oak_sign[rotation=0,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=0]", + "minecraft:oak_sign[rotation=0,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=0]", + "minecraft:oak_sign[rotation=1,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=1]", + "minecraft:oak_sign[rotation=1,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=1]", + "minecraft:oak_sign[rotation=2,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=2]", + "minecraft:oak_sign[rotation=2,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=2]", + "minecraft:oak_sign[rotation=3,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=3]", + "minecraft:oak_sign[rotation=3,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=3]", + "minecraft:oak_sign[rotation=4,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=4]", + "minecraft:oak_sign[rotation=4,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=4]", + "minecraft:oak_sign[rotation=5,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=5]", + "minecraft:oak_sign[rotation=5,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=5]", + "minecraft:oak_sign[rotation=6,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=6]", + "minecraft:oak_sign[rotation=6,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=6]", + "minecraft:oak_sign[rotation=7,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=7]", + "minecraft:oak_sign[rotation=7,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=7]", + "minecraft:oak_sign[rotation=8,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=8]", + "minecraft:oak_sign[rotation=8,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=8]", + "minecraft:oak_sign[rotation=9,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=9]", + "minecraft:oak_sign[rotation=9,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=9]", + "minecraft:oak_sign[rotation=10,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=10]", + "minecraft:oak_sign[rotation=10,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=10]", + "minecraft:oak_sign[rotation=11,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=11]", + "minecraft:oak_sign[rotation=11,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=11]", + "minecraft:oak_sign[rotation=12,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=12]", + "minecraft:oak_sign[rotation=12,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=12]", + "minecraft:oak_sign[rotation=13,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=13]", + "minecraft:oak_sign[rotation=13,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=13]", + "minecraft:oak_sign[rotation=14,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=14]", + "minecraft:oak_sign[rotation=14,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=14]", + "minecraft:oak_sign[rotation=15,waterlogged=true]": "minecraft:standing_sign[ground_sign_direction=15]", + "minecraft:oak_sign[rotation=15,waterlogged=false]": "minecraft:standing_sign[ground_sign_direction=15]", + "minecraft:spruce_sign[rotation=0,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=0]", + "minecraft:spruce_sign[rotation=0,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=0]", + "minecraft:spruce_sign[rotation=1,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=1]", + "minecraft:spruce_sign[rotation=1,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=1]", + "minecraft:spruce_sign[rotation=2,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=2]", + "minecraft:spruce_sign[rotation=2,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=2]", + "minecraft:spruce_sign[rotation=3,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=3]", + "minecraft:spruce_sign[rotation=3,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=3]", + "minecraft:spruce_sign[rotation=4,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=4]", + "minecraft:spruce_sign[rotation=4,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=4]", + "minecraft:spruce_sign[rotation=5,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=5]", + "minecraft:spruce_sign[rotation=5,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=5]", + "minecraft:spruce_sign[rotation=6,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=6]", + "minecraft:spruce_sign[rotation=6,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=6]", + "minecraft:spruce_sign[rotation=7,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=7]", + "minecraft:spruce_sign[rotation=7,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=7]", + "minecraft:spruce_sign[rotation=8,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=8]", + "minecraft:spruce_sign[rotation=8,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=8]", + "minecraft:spruce_sign[rotation=9,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=9]", + "minecraft:spruce_sign[rotation=9,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=9]", + "minecraft:spruce_sign[rotation=10,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=10]", + "minecraft:spruce_sign[rotation=10,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=10]", + "minecraft:spruce_sign[rotation=11,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=11]", + "minecraft:spruce_sign[rotation=11,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=11]", + "minecraft:spruce_sign[rotation=12,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=12]", + "minecraft:spruce_sign[rotation=12,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=12]", + "minecraft:spruce_sign[rotation=13,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=13]", + "minecraft:spruce_sign[rotation=13,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=13]", + "minecraft:spruce_sign[rotation=14,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=14]", + "minecraft:spruce_sign[rotation=14,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=14]", + "minecraft:spruce_sign[rotation=15,waterlogged=true]": "minecraft:spruce_standing_sign[ground_sign_direction=15]", + "minecraft:spruce_sign[rotation=15,waterlogged=false]": "minecraft:spruce_standing_sign[ground_sign_direction=15]", + "minecraft:birch_sign[rotation=0,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=0]", + "minecraft:birch_sign[rotation=0,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=0]", + "minecraft:birch_sign[rotation=1,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=1]", + "minecraft:birch_sign[rotation=1,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=1]", + "minecraft:birch_sign[rotation=2,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=2]", + "minecraft:birch_sign[rotation=2,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=2]", + "minecraft:birch_sign[rotation=3,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=3]", + "minecraft:birch_sign[rotation=3,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=3]", + "minecraft:birch_sign[rotation=4,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=4]", + "minecraft:birch_sign[rotation=4,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=4]", + "minecraft:birch_sign[rotation=5,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=5]", + "minecraft:birch_sign[rotation=5,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=5]", + "minecraft:birch_sign[rotation=6,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=6]", + "minecraft:birch_sign[rotation=6,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=6]", + "minecraft:birch_sign[rotation=7,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=7]", + "minecraft:birch_sign[rotation=7,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=7]", + "minecraft:birch_sign[rotation=8,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=8]", + "minecraft:birch_sign[rotation=8,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=8]", + "minecraft:birch_sign[rotation=9,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=9]", + "minecraft:birch_sign[rotation=9,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=9]", + "minecraft:birch_sign[rotation=10,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=10]", + "minecraft:birch_sign[rotation=10,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=10]", + "minecraft:birch_sign[rotation=11,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=11]", + "minecraft:birch_sign[rotation=11,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=11]", + "minecraft:birch_sign[rotation=12,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=12]", + "minecraft:birch_sign[rotation=12,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=12]", + "minecraft:birch_sign[rotation=13,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=13]", + "minecraft:birch_sign[rotation=13,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=13]", + "minecraft:birch_sign[rotation=14,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=14]", + "minecraft:birch_sign[rotation=14,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=14]", + "minecraft:birch_sign[rotation=15,waterlogged=true]": "minecraft:birch_standing_sign[ground_sign_direction=15]", + "minecraft:birch_sign[rotation=15,waterlogged=false]": "minecraft:birch_standing_sign[ground_sign_direction=15]", + "minecraft:acacia_sign[rotation=0,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=0]", + "minecraft:acacia_sign[rotation=0,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=0]", + "minecraft:acacia_sign[rotation=1,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=1]", + "minecraft:acacia_sign[rotation=1,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=1]", + "minecraft:acacia_sign[rotation=2,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=2]", + "minecraft:acacia_sign[rotation=2,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=2]", + "minecraft:acacia_sign[rotation=3,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=3]", + "minecraft:acacia_sign[rotation=3,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=3]", + "minecraft:acacia_sign[rotation=4,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=4]", + "minecraft:acacia_sign[rotation=4,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=4]", + "minecraft:acacia_sign[rotation=5,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=5]", + "minecraft:acacia_sign[rotation=5,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=5]", + "minecraft:acacia_sign[rotation=6,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=6]", + "minecraft:acacia_sign[rotation=6,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=6]", + "minecraft:acacia_sign[rotation=7,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=7]", + "minecraft:acacia_sign[rotation=7,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=7]", + "minecraft:acacia_sign[rotation=8,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=8]", + "minecraft:acacia_sign[rotation=8,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=8]", + "minecraft:acacia_sign[rotation=9,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=9]", + "minecraft:acacia_sign[rotation=9,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=9]", + "minecraft:acacia_sign[rotation=10,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=10]", + "minecraft:acacia_sign[rotation=10,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=10]", + "minecraft:acacia_sign[rotation=11,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=11]", + "minecraft:acacia_sign[rotation=11,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=11]", + "minecraft:acacia_sign[rotation=12,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=12]", + "minecraft:acacia_sign[rotation=12,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=12]", + "minecraft:acacia_sign[rotation=13,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=13]", + "minecraft:acacia_sign[rotation=13,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=13]", + "minecraft:acacia_sign[rotation=14,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=14]", + "minecraft:acacia_sign[rotation=14,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=14]", + "minecraft:acacia_sign[rotation=15,waterlogged=true]": "minecraft:acacia_standing_sign[ground_sign_direction=15]", + "minecraft:acacia_sign[rotation=15,waterlogged=false]": "minecraft:acacia_standing_sign[ground_sign_direction=15]", + "minecraft:cherry_sign[rotation=0,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=0]", + "minecraft:cherry_sign[rotation=0,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=0]", + "minecraft:cherry_sign[rotation=1,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=1]", + "minecraft:cherry_sign[rotation=1,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=1]", + "minecraft:cherry_sign[rotation=2,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=2]", + "minecraft:cherry_sign[rotation=2,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=2]", + "minecraft:cherry_sign[rotation=3,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=3]", + "minecraft:cherry_sign[rotation=3,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=3]", + "minecraft:cherry_sign[rotation=4,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=4]", + "minecraft:cherry_sign[rotation=4,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=4]", + "minecraft:cherry_sign[rotation=5,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=5]", + "minecraft:cherry_sign[rotation=5,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=5]", + "minecraft:cherry_sign[rotation=6,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=6]", + "minecraft:cherry_sign[rotation=6,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=6]", + "minecraft:cherry_sign[rotation=7,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=7]", + "minecraft:cherry_sign[rotation=7,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=7]", + "minecraft:cherry_sign[rotation=8,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=8]", + "minecraft:cherry_sign[rotation=8,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=8]", + "minecraft:cherry_sign[rotation=9,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=9]", + "minecraft:cherry_sign[rotation=9,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=9]", + "minecraft:cherry_sign[rotation=10,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=10]", + "minecraft:cherry_sign[rotation=10,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=10]", + "minecraft:cherry_sign[rotation=11,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=11]", + "minecraft:cherry_sign[rotation=11,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=11]", + "minecraft:cherry_sign[rotation=12,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=12]", + "minecraft:cherry_sign[rotation=12,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=12]", + "minecraft:cherry_sign[rotation=13,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=13]", + "minecraft:cherry_sign[rotation=13,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=13]", + "minecraft:cherry_sign[rotation=14,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=14]", + "minecraft:cherry_sign[rotation=14,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=14]", + "minecraft:cherry_sign[rotation=15,waterlogged=true]": "minecraft:cherry_standing_sign[ground_sign_direction=15]", + "minecraft:cherry_sign[rotation=15,waterlogged=false]": "minecraft:cherry_standing_sign[ground_sign_direction=15]", + "minecraft:jungle_sign[rotation=0,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=0]", + "minecraft:jungle_sign[rotation=0,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=0]", + "minecraft:jungle_sign[rotation=1,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=1]", + "minecraft:jungle_sign[rotation=1,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=1]", + "minecraft:jungle_sign[rotation=2,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=2]", + "minecraft:jungle_sign[rotation=2,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=2]", + "minecraft:jungle_sign[rotation=3,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=3]", + "minecraft:jungle_sign[rotation=3,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=3]", + "minecraft:jungle_sign[rotation=4,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=4]", + "minecraft:jungle_sign[rotation=4,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=4]", + "minecraft:jungle_sign[rotation=5,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=5]", + "minecraft:jungle_sign[rotation=5,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=5]", + "minecraft:jungle_sign[rotation=6,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=6]", + "minecraft:jungle_sign[rotation=6,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=6]", + "minecraft:jungle_sign[rotation=7,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=7]", + "minecraft:jungle_sign[rotation=7,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=7]", + "minecraft:jungle_sign[rotation=8,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=8]", + "minecraft:jungle_sign[rotation=8,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=8]", + "minecraft:jungle_sign[rotation=9,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=9]", + "minecraft:jungle_sign[rotation=9,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=9]", + "minecraft:jungle_sign[rotation=10,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=10]", + "minecraft:jungle_sign[rotation=10,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=10]", + "minecraft:jungle_sign[rotation=11,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=11]", + "minecraft:jungle_sign[rotation=11,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=11]", + "minecraft:jungle_sign[rotation=12,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=12]", + "minecraft:jungle_sign[rotation=12,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=12]", + "minecraft:jungle_sign[rotation=13,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=13]", + "minecraft:jungle_sign[rotation=13,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=13]", + "minecraft:jungle_sign[rotation=14,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=14]", + "minecraft:jungle_sign[rotation=14,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=14]", + "minecraft:jungle_sign[rotation=15,waterlogged=true]": "minecraft:jungle_standing_sign[ground_sign_direction=15]", + "minecraft:jungle_sign[rotation=15,waterlogged=false]": "minecraft:jungle_standing_sign[ground_sign_direction=15]", + "minecraft:dark_oak_sign[rotation=0,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=0]", + "minecraft:dark_oak_sign[rotation=0,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=0]", + "minecraft:dark_oak_sign[rotation=1,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=1]", + "minecraft:dark_oak_sign[rotation=1,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=1]", + "minecraft:dark_oak_sign[rotation=2,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=2]", + "minecraft:dark_oak_sign[rotation=2,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=2]", + "minecraft:dark_oak_sign[rotation=3,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=3]", + "minecraft:dark_oak_sign[rotation=3,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=3]", + "minecraft:dark_oak_sign[rotation=4,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=4]", + "minecraft:dark_oak_sign[rotation=4,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=4]", + "minecraft:dark_oak_sign[rotation=5,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=5]", + "minecraft:dark_oak_sign[rotation=5,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=5]", + "minecraft:dark_oak_sign[rotation=6,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=6]", + "minecraft:dark_oak_sign[rotation=6,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=6]", + "minecraft:dark_oak_sign[rotation=7,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=7]", + "minecraft:dark_oak_sign[rotation=7,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=7]", + "minecraft:dark_oak_sign[rotation=8,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=8]", + "minecraft:dark_oak_sign[rotation=8,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=8]", + "minecraft:dark_oak_sign[rotation=9,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=9]", + "minecraft:dark_oak_sign[rotation=9,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=9]", + "minecraft:dark_oak_sign[rotation=10,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=10]", + "minecraft:dark_oak_sign[rotation=10,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=10]", + "minecraft:dark_oak_sign[rotation=11,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=11]", + "minecraft:dark_oak_sign[rotation=11,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=11]", + "minecraft:dark_oak_sign[rotation=12,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=12]", + "minecraft:dark_oak_sign[rotation=12,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=12]", + "minecraft:dark_oak_sign[rotation=13,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=13]", + "minecraft:dark_oak_sign[rotation=13,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=13]", + "minecraft:dark_oak_sign[rotation=14,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=14]", + "minecraft:dark_oak_sign[rotation=14,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=14]", + "minecraft:dark_oak_sign[rotation=15,waterlogged=true]": "minecraft:darkoak_standing_sign[ground_sign_direction=15]", + "minecraft:dark_oak_sign[rotation=15,waterlogged=false]": "minecraft:darkoak_standing_sign[ground_sign_direction=15]", + "minecraft:mangrove_sign[rotation=0,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=0]", + "minecraft:mangrove_sign[rotation=0,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=0]", + "minecraft:mangrove_sign[rotation=1,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=1]", + "minecraft:mangrove_sign[rotation=1,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=1]", + "minecraft:mangrove_sign[rotation=2,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=2]", + "minecraft:mangrove_sign[rotation=2,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=2]", + "minecraft:mangrove_sign[rotation=3,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=3]", + "minecraft:mangrove_sign[rotation=3,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=3]", + "minecraft:mangrove_sign[rotation=4,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=4]", + "minecraft:mangrove_sign[rotation=4,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=4]", + "minecraft:mangrove_sign[rotation=5,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=5]", + "minecraft:mangrove_sign[rotation=5,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=5]", + "minecraft:mangrove_sign[rotation=6,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=6]", + "minecraft:mangrove_sign[rotation=6,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=6]", + "minecraft:mangrove_sign[rotation=7,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=7]", + "minecraft:mangrove_sign[rotation=7,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=7]", + "minecraft:mangrove_sign[rotation=8,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=8]", + "minecraft:mangrove_sign[rotation=8,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=8]", + "minecraft:mangrove_sign[rotation=9,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=9]", + "minecraft:mangrove_sign[rotation=9,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=9]", + "minecraft:mangrove_sign[rotation=10,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=10]", + "minecraft:mangrove_sign[rotation=10,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=10]", + "minecraft:mangrove_sign[rotation=11,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=11]", + "minecraft:mangrove_sign[rotation=11,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=11]", + "minecraft:mangrove_sign[rotation=12,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=12]", + "minecraft:mangrove_sign[rotation=12,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=12]", + "minecraft:mangrove_sign[rotation=13,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=13]", + "minecraft:mangrove_sign[rotation=13,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=13]", + "minecraft:mangrove_sign[rotation=14,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=14]", + "minecraft:mangrove_sign[rotation=14,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=14]", + "minecraft:mangrove_sign[rotation=15,waterlogged=true]": "minecraft:mangrove_standing_sign[ground_sign_direction=15]", + "minecraft:mangrove_sign[rotation=15,waterlogged=false]": "minecraft:mangrove_standing_sign[ground_sign_direction=15]", + "minecraft:bamboo_sign[rotation=0,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=0]", + "minecraft:bamboo_sign[rotation=0,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=0]", + "minecraft:bamboo_sign[rotation=1,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=1]", + "minecraft:bamboo_sign[rotation=1,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=1]", + "minecraft:bamboo_sign[rotation=2,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=2]", + "minecraft:bamboo_sign[rotation=2,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=2]", + "minecraft:bamboo_sign[rotation=3,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=3]", + "minecraft:bamboo_sign[rotation=3,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=3]", + "minecraft:bamboo_sign[rotation=4,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=4]", + "minecraft:bamboo_sign[rotation=4,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=4]", + "minecraft:bamboo_sign[rotation=5,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=5]", + "minecraft:bamboo_sign[rotation=5,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=5]", + "minecraft:bamboo_sign[rotation=6,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=6]", + "minecraft:bamboo_sign[rotation=6,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=6]", + "minecraft:bamboo_sign[rotation=7,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=7]", + "minecraft:bamboo_sign[rotation=7,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=7]", + "minecraft:bamboo_sign[rotation=8,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=8]", + "minecraft:bamboo_sign[rotation=8,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=8]", + "minecraft:bamboo_sign[rotation=9,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=9]", + "minecraft:bamboo_sign[rotation=9,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=9]", + "minecraft:bamboo_sign[rotation=10,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=10]", + "minecraft:bamboo_sign[rotation=10,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=10]", + "minecraft:bamboo_sign[rotation=11,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=11]", + "minecraft:bamboo_sign[rotation=11,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=11]", + "minecraft:bamboo_sign[rotation=12,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=12]", + "minecraft:bamboo_sign[rotation=12,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=12]", + "minecraft:bamboo_sign[rotation=13,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=13]", + "minecraft:bamboo_sign[rotation=13,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=13]", + "minecraft:bamboo_sign[rotation=14,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=14]", + "minecraft:bamboo_sign[rotation=14,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=14]", + "minecraft:bamboo_sign[rotation=15,waterlogged=true]": "minecraft:bamboo_standing_sign[ground_sign_direction=15]", + "minecraft:bamboo_sign[rotation=15,waterlogged=false]": "minecraft:bamboo_standing_sign[ground_sign_direction=15]", + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:wooden_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:wooden_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:wooden_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:wooden_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:wooden_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:wooden_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:wooden_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:wooden_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:wooden_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:wooden_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:wooden_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:wooden_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:wooden_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:wooden_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:wooden_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:wooden_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:wooden_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:wooden_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:wooden_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:wooden_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:wooden_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:wooden_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:wooden_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:wooden_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:wooden_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:wooden_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:wooden_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:wooden_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:wooden_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:wooden_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:wooden_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:wooden_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:wooden_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:wooden_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:wooden_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:wooden_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:wooden_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:wooden_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:wooden_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:wooden_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:wooden_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:wooden_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:wooden_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:wooden_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:wooden_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:wooden_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:wooden_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:wooden_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:wooden_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:wooden_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:wooden_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:wooden_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:wooden_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:wooden_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:wooden_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:wooden_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:wooden_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:wooden_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:wooden_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:wooden_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:wooden_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:wooden_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:wooden_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:wooden_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:ladder[facing=north,waterlogged=true]": "minecraft:ladder[facing_direction=2]", + "minecraft:ladder[facing=north,waterlogged=false]": "minecraft:ladder[facing_direction=2]", + "minecraft:ladder[facing=south,waterlogged=true]": "minecraft:ladder[facing_direction=3]", + "minecraft:ladder[facing=south,waterlogged=false]": "minecraft:ladder[facing_direction=3]", + "minecraft:ladder[facing=west,waterlogged=true]": "minecraft:ladder[facing_direction=4]", + "minecraft:ladder[facing=west,waterlogged=false]": "minecraft:ladder[facing_direction=4]", + "minecraft:ladder[facing=east,waterlogged=true]": "minecraft:ladder[facing_direction=5]", + "minecraft:ladder[facing=east,waterlogged=false]": "minecraft:ladder[facing_direction=5]", + "minecraft:rail[shape=north_south,waterlogged=true]": "minecraft:rail[rail_direction=0]", + "minecraft:rail[shape=north_south,waterlogged=false]": "minecraft:rail[rail_direction=0]", + "minecraft:rail[shape=east_west,waterlogged=true]": "minecraft:rail[rail_direction=1]", + "minecraft:rail[shape=east_west,waterlogged=false]": "minecraft:rail[rail_direction=1]", + "minecraft:rail[shape=ascending_east,waterlogged=true]": "minecraft:rail[rail_direction=2]", + "minecraft:rail[shape=ascending_east,waterlogged=false]": "minecraft:rail[rail_direction=2]", + "minecraft:rail[shape=ascending_west,waterlogged=true]": "minecraft:rail[rail_direction=3]", + "minecraft:rail[shape=ascending_west,waterlogged=false]": "minecraft:rail[rail_direction=3]", + "minecraft:rail[shape=ascending_north,waterlogged=true]": "minecraft:rail[rail_direction=4]", + "minecraft:rail[shape=ascending_north,waterlogged=false]": "minecraft:rail[rail_direction=4]", + "minecraft:rail[shape=ascending_south,waterlogged=true]": "minecraft:rail[rail_direction=5]", + "minecraft:rail[shape=ascending_south,waterlogged=false]": "minecraft:rail[rail_direction=5]", + "minecraft:rail[shape=south_east,waterlogged=true]": "minecraft:rail[rail_direction=6]", + "minecraft:rail[shape=south_east,waterlogged=false]": "minecraft:rail[rail_direction=6]", + "minecraft:rail[shape=south_west,waterlogged=true]": "minecraft:rail[rail_direction=7]", + "minecraft:rail[shape=south_west,waterlogged=false]": "minecraft:rail[rail_direction=7]", + "minecraft:rail[shape=north_west,waterlogged=true]": "minecraft:rail[rail_direction=8]", + "minecraft:rail[shape=north_west,waterlogged=false]": "minecraft:rail[rail_direction=8]", + "minecraft:rail[shape=north_east,waterlogged=true]": "minecraft:rail[rail_direction=9]", + "minecraft:rail[shape=north_east,waterlogged=false]": "minecraft:rail[rail_direction=9]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_wall_sign[facing=north,waterlogged=true]": "minecraft:wall_sign[facing_direction=2]", + "minecraft:oak_wall_sign[facing=north,waterlogged=false]": "minecraft:wall_sign[facing_direction=2]", + "minecraft:oak_wall_sign[facing=south,waterlogged=true]": "minecraft:wall_sign[facing_direction=3]", + "minecraft:oak_wall_sign[facing=south,waterlogged=false]": "minecraft:wall_sign[facing_direction=3]", + "minecraft:oak_wall_sign[facing=west,waterlogged=true]": "minecraft:wall_sign[facing_direction=4]", + "minecraft:oak_wall_sign[facing=west,waterlogged=false]": "minecraft:wall_sign[facing_direction=4]", + "minecraft:oak_wall_sign[facing=east,waterlogged=true]": "minecraft:wall_sign[facing_direction=5]", + "minecraft:oak_wall_sign[facing=east,waterlogged=false]": "minecraft:wall_sign[facing_direction=5]", + "minecraft:spruce_wall_sign[facing=north,waterlogged=true]": "minecraft:spruce_wall_sign[facing_direction=2]", + "minecraft:spruce_wall_sign[facing=north,waterlogged=false]": "minecraft:spruce_wall_sign[facing_direction=2]", + "minecraft:spruce_wall_sign[facing=south,waterlogged=true]": "minecraft:spruce_wall_sign[facing_direction=3]", + "minecraft:spruce_wall_sign[facing=south,waterlogged=false]": "minecraft:spruce_wall_sign[facing_direction=3]", + "minecraft:spruce_wall_sign[facing=west,waterlogged=true]": "minecraft:spruce_wall_sign[facing_direction=4]", + "minecraft:spruce_wall_sign[facing=west,waterlogged=false]": "minecraft:spruce_wall_sign[facing_direction=4]", + "minecraft:spruce_wall_sign[facing=east,waterlogged=true]": "minecraft:spruce_wall_sign[facing_direction=5]", + "minecraft:spruce_wall_sign[facing=east,waterlogged=false]": "minecraft:spruce_wall_sign[facing_direction=5]", + "minecraft:birch_wall_sign[facing=north,waterlogged=true]": "minecraft:birch_wall_sign[facing_direction=2]", + "minecraft:birch_wall_sign[facing=north,waterlogged=false]": "minecraft:birch_wall_sign[facing_direction=2]", + "minecraft:birch_wall_sign[facing=south,waterlogged=true]": "minecraft:birch_wall_sign[facing_direction=3]", + "minecraft:birch_wall_sign[facing=south,waterlogged=false]": "minecraft:birch_wall_sign[facing_direction=3]", + "minecraft:birch_wall_sign[facing=west,waterlogged=true]": "minecraft:birch_wall_sign[facing_direction=4]", + "minecraft:birch_wall_sign[facing=west,waterlogged=false]": "minecraft:birch_wall_sign[facing_direction=4]", + "minecraft:birch_wall_sign[facing=east,waterlogged=true]": "minecraft:birch_wall_sign[facing_direction=5]", + "minecraft:birch_wall_sign[facing=east,waterlogged=false]": "minecraft:birch_wall_sign[facing_direction=5]", + "minecraft:acacia_wall_sign[facing=north,waterlogged=true]": "minecraft:acacia_wall_sign[facing_direction=2]", + "minecraft:acacia_wall_sign[facing=north,waterlogged=false]": "minecraft:acacia_wall_sign[facing_direction=2]", + "minecraft:acacia_wall_sign[facing=south,waterlogged=true]": "minecraft:acacia_wall_sign[facing_direction=3]", + "minecraft:acacia_wall_sign[facing=south,waterlogged=false]": "minecraft:acacia_wall_sign[facing_direction=3]", + "minecraft:acacia_wall_sign[facing=west,waterlogged=true]": "minecraft:acacia_wall_sign[facing_direction=4]", + "minecraft:acacia_wall_sign[facing=west,waterlogged=false]": "minecraft:acacia_wall_sign[facing_direction=4]", + "minecraft:acacia_wall_sign[facing=east,waterlogged=true]": "minecraft:acacia_wall_sign[facing_direction=5]", + "minecraft:acacia_wall_sign[facing=east,waterlogged=false]": "minecraft:acacia_wall_sign[facing_direction=5]", + "minecraft:cherry_wall_sign[facing=north,waterlogged=true]": "minecraft:cherry_wall_sign[facing_direction=2]", + "minecraft:cherry_wall_sign[facing=north,waterlogged=false]": "minecraft:cherry_wall_sign[facing_direction=2]", + "minecraft:cherry_wall_sign[facing=south,waterlogged=true]": "minecraft:cherry_wall_sign[facing_direction=3]", + "minecraft:cherry_wall_sign[facing=south,waterlogged=false]": "minecraft:cherry_wall_sign[facing_direction=3]", + "minecraft:cherry_wall_sign[facing=west,waterlogged=true]": "minecraft:cherry_wall_sign[facing_direction=4]", + "minecraft:cherry_wall_sign[facing=west,waterlogged=false]": "minecraft:cherry_wall_sign[facing_direction=4]", + "minecraft:cherry_wall_sign[facing=east,waterlogged=true]": "minecraft:cherry_wall_sign[facing_direction=5]", + "minecraft:cherry_wall_sign[facing=east,waterlogged=false]": "minecraft:cherry_wall_sign[facing_direction=5]", + "minecraft:jungle_wall_sign[facing=north,waterlogged=true]": "minecraft:jungle_wall_sign[facing_direction=2]", + "minecraft:jungle_wall_sign[facing=north,waterlogged=false]": "minecraft:jungle_wall_sign[facing_direction=2]", + "minecraft:jungle_wall_sign[facing=south,waterlogged=true]": "minecraft:jungle_wall_sign[facing_direction=3]", + "minecraft:jungle_wall_sign[facing=south,waterlogged=false]": "minecraft:jungle_wall_sign[facing_direction=3]", + "minecraft:jungle_wall_sign[facing=west,waterlogged=true]": "minecraft:jungle_wall_sign[facing_direction=4]", + "minecraft:jungle_wall_sign[facing=west,waterlogged=false]": "minecraft:jungle_wall_sign[facing_direction=4]", + "minecraft:jungle_wall_sign[facing=east,waterlogged=true]": "minecraft:jungle_wall_sign[facing_direction=5]", + "minecraft:jungle_wall_sign[facing=east,waterlogged=false]": "minecraft:jungle_wall_sign[facing_direction=5]", + "minecraft:dark_oak_wall_sign[facing=north,waterlogged=true]": "minecraft:darkoak_wall_sign[facing_direction=2]", + "minecraft:dark_oak_wall_sign[facing=north,waterlogged=false]": "minecraft:darkoak_wall_sign[facing_direction=2]", + "minecraft:dark_oak_wall_sign[facing=south,waterlogged=true]": "minecraft:darkoak_wall_sign[facing_direction=3]", + "minecraft:dark_oak_wall_sign[facing=south,waterlogged=false]": "minecraft:darkoak_wall_sign[facing_direction=3]", + "minecraft:dark_oak_wall_sign[facing=west,waterlogged=true]": "minecraft:darkoak_wall_sign[facing_direction=4]", + "minecraft:dark_oak_wall_sign[facing=west,waterlogged=false]": "minecraft:darkoak_wall_sign[facing_direction=4]", + "minecraft:dark_oak_wall_sign[facing=east,waterlogged=true]": "minecraft:darkoak_wall_sign[facing_direction=5]", + "minecraft:dark_oak_wall_sign[facing=east,waterlogged=false]": "minecraft:darkoak_wall_sign[facing_direction=5]", + "minecraft:mangrove_wall_sign[facing=north,waterlogged=true]": "minecraft:mangrove_wall_sign[facing_direction=2]", + "minecraft:mangrove_wall_sign[facing=north,waterlogged=false]": "minecraft:mangrove_wall_sign[facing_direction=2]", + "minecraft:mangrove_wall_sign[facing=south,waterlogged=true]": "minecraft:mangrove_wall_sign[facing_direction=3]", + "minecraft:mangrove_wall_sign[facing=south,waterlogged=false]": "minecraft:mangrove_wall_sign[facing_direction=3]", + "minecraft:mangrove_wall_sign[facing=west,waterlogged=true]": "minecraft:mangrove_wall_sign[facing_direction=4]", + "minecraft:mangrove_wall_sign[facing=west,waterlogged=false]": "minecraft:mangrove_wall_sign[facing_direction=4]", + "minecraft:mangrove_wall_sign[facing=east,waterlogged=true]": "minecraft:mangrove_wall_sign[facing_direction=5]", + "minecraft:mangrove_wall_sign[facing=east,waterlogged=false]": "minecraft:mangrove_wall_sign[facing_direction=5]", + "minecraft:bamboo_wall_sign[facing=north,waterlogged=true]": "minecraft:bamboo_wall_sign[facing_direction=2]", + "minecraft:bamboo_wall_sign[facing=north,waterlogged=false]": "minecraft:bamboo_wall_sign[facing_direction=2]", + "minecraft:bamboo_wall_sign[facing=south,waterlogged=true]": "minecraft:bamboo_wall_sign[facing_direction=3]", + "minecraft:bamboo_wall_sign[facing=south,waterlogged=false]": "minecraft:bamboo_wall_sign[facing_direction=3]", + "minecraft:bamboo_wall_sign[facing=west,waterlogged=true]": "minecraft:bamboo_wall_sign[facing_direction=4]", + "minecraft:bamboo_wall_sign[facing=west,waterlogged=false]": "minecraft:bamboo_wall_sign[facing_direction=4]", + "minecraft:bamboo_wall_sign[facing=east,waterlogged=true]": "minecraft:bamboo_wall_sign[facing_direction=5]", + "minecraft:bamboo_wall_sign[facing=east,waterlogged=false]": "minecraft:bamboo_wall_sign[facing_direction=5]", + "minecraft:oak_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:oak_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:oak_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:spruce_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:spruce_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:birch_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:birch_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:acacia_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:acacia_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:cherry_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:cherry_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:jungle_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:jungle_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:dark_oak_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:crimson_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:crimson_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:warped_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:warped_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:mangrove_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=0,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=0,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=1,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=1,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=2,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=2,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=3,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=3,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=4,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=4,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=5,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=5,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=6,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=6,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=7,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=7,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=8,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=8,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=9,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=9,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=10,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=10,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=11,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=11,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=12,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=12,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=13,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=13,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=14,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=14,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=15,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=true,rotation=15,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=0,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=0,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=3,ground_sign_direction=0,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=1,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=1,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=1,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=2,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=2,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=2,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=3,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=3,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=3,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=4,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=4,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=4,ground_sign_direction=4,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=5,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=5,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=5,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=6,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=6,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=6,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=7,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=7,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=7,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=8,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=8,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=8,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=9,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=9,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=9,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=10,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=10,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=10,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=11,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=11,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=11,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=12,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=12,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=5,ground_sign_direction=12,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=13,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=13,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=13,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=14,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=14,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=14,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=15,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:bamboo_hanging_sign[attached=false,rotation=15,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=false,facing_direction=2,ground_sign_direction=15,hanging=true]", + "minecraft:oak_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:oak_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:spruce_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:spruce_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:birch_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:birch_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:acacia_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:acacia_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:cherry_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:cherry_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:jungle_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:jungle_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:dark_oak_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:dark_oak_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:mangrove_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:mangrove_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:crimson_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:crimson_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:warped_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:warped_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=north,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=north,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=2,ground_sign_direction=8,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=south,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=south,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=3,ground_sign_direction=0,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=west,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=west,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=4,ground_sign_direction=4,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=east,waterlogged=true]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:bamboo_wall_hanging_sign[facing=east,waterlogged=false]": "minecraft:bamboo_hanging_sign[attached_bit=true,facing_direction=5,ground_sign_direction=12,hanging=false]", + "minecraft:lever[face=floor,facing=north,powered=true]": "minecraft:lever[lever_direction=up_north_south,open_bit=true]", + "minecraft:lever[face=floor,facing=north,powered=false]": "minecraft:lever[lever_direction=up_north_south,open_bit=false]", + "minecraft:lever[face=floor,facing=south,powered=true]": "minecraft:lever[lever_direction=up_north_south,open_bit=false]", + "minecraft:lever[face=floor,facing=south,powered=false]": "minecraft:lever[lever_direction=up_north_south,open_bit=true]", + "minecraft:lever[face=floor,facing=west,powered=true]": "minecraft:lever[lever_direction=up_east_west,open_bit=true]", + "minecraft:lever[face=floor,facing=west,powered=false]": "minecraft:lever[lever_direction=up_east_west,open_bit=false]", + "minecraft:lever[face=floor,facing=east,powered=true]": "minecraft:lever[lever_direction=up_east_west,open_bit=false]", + "minecraft:lever[face=floor,facing=east,powered=false]": "minecraft:lever[lever_direction=up_east_west,open_bit=true]", + "minecraft:lever[face=wall,facing=north,powered=true]": "minecraft:lever[lever_direction=north,open_bit=true]", + "minecraft:lever[face=wall,facing=north,powered=false]": "minecraft:lever[lever_direction=north,open_bit=false]", + "minecraft:lever[face=wall,facing=south,powered=true]": "minecraft:lever[lever_direction=south,open_bit=true]", + "minecraft:lever[face=wall,facing=south,powered=false]": "minecraft:lever[lever_direction=south,open_bit=false]", + "minecraft:lever[face=wall,facing=west,powered=true]": "minecraft:lever[lever_direction=west,open_bit=true]", + "minecraft:lever[face=wall,facing=west,powered=false]": "minecraft:lever[lever_direction=west,open_bit=false]", + "minecraft:lever[face=wall,facing=east,powered=true]": "minecraft:lever[lever_direction=east,open_bit=true]", + "minecraft:lever[face=wall,facing=east,powered=false]": "minecraft:lever[lever_direction=east,open_bit=false]", + "minecraft:lever[face=ceiling,facing=north,powered=true]": "minecraft:lever[lever_direction=down_north_south,open_bit=true]", + "minecraft:lever[face=ceiling,facing=north,powered=false]": "minecraft:lever[lever_direction=down_north_south,open_bit=false]", + "minecraft:lever[face=ceiling,facing=south,powered=true]": "minecraft:lever[lever_direction=down_north_south,open_bit=false]", + "minecraft:lever[face=ceiling,facing=south,powered=false]": "minecraft:lever[lever_direction=down_north_south,open_bit=true]", + "minecraft:lever[face=ceiling,facing=west,powered=true]": "minecraft:lever[lever_direction=down_east_west,open_bit=true]", + "minecraft:lever[face=ceiling,facing=west,powered=false]": "minecraft:lever[lever_direction=down_east_west,open_bit=false]", + "minecraft:lever[face=ceiling,facing=east,powered=true]": "minecraft:lever[lever_direction=down_east_west,open_bit=false]", + "minecraft:lever[face=ceiling,facing=east,powered=false]": "minecraft:lever[lever_direction=down_east_west,open_bit=true]", + "minecraft:stone_pressure_plate[powered=true]": "minecraft:stone_pressure_plate[redstone_signal=15]", + "minecraft:stone_pressure_plate[powered=false]": "minecraft:stone_pressure_plate[redstone_signal=0]", + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:iron_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:iron_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:iron_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:iron_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:iron_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:iron_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:iron_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:iron_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:iron_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:iron_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:iron_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:iron_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:iron_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:iron_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:iron_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:iron_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:iron_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:iron_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:iron_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:iron_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:iron_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:iron_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:iron_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:iron_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:iron_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:iron_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:iron_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:iron_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:iron_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:iron_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:iron_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:iron_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:iron_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:iron_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:iron_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:iron_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:iron_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:iron_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:iron_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:iron_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:iron_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:iron_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:iron_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:iron_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:iron_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:iron_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:iron_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:iron_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:iron_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:iron_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:iron_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:iron_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:iron_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:iron_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:iron_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:iron_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:iron_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:iron_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:iron_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:iron_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:iron_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:iron_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:iron_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:iron_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oak_pressure_plate[powered=true]": "minecraft:wooden_pressure_plate[redstone_signal=15]", + "minecraft:oak_pressure_plate[powered=false]": "minecraft:wooden_pressure_plate[redstone_signal=0]", + "minecraft:spruce_pressure_plate[powered=true]": "minecraft:spruce_pressure_plate[redstone_signal=15]", + "minecraft:spruce_pressure_plate[powered=false]": "minecraft:spruce_pressure_plate[redstone_signal=0]", + "minecraft:birch_pressure_plate[powered=true]": "minecraft:birch_pressure_plate[redstone_signal=15]", + "minecraft:birch_pressure_plate[powered=false]": "minecraft:birch_pressure_plate[redstone_signal=0]", + "minecraft:jungle_pressure_plate[powered=true]": "minecraft:jungle_pressure_plate[redstone_signal=15]", + "minecraft:jungle_pressure_plate[powered=false]": "minecraft:jungle_pressure_plate[redstone_signal=0]", + "minecraft:acacia_pressure_plate[powered=true]": "minecraft:acacia_pressure_plate[redstone_signal=15]", + "minecraft:acacia_pressure_plate[powered=false]": "minecraft:acacia_pressure_plate[redstone_signal=0]", + "minecraft:cherry_pressure_plate[powered=true]": "minecraft:cherry_pressure_plate[redstone_signal=15]", + "minecraft:cherry_pressure_plate[powered=false]": "minecraft:cherry_pressure_plate[redstone_signal=0]", + "minecraft:dark_oak_pressure_plate[powered=true]": "minecraft:dark_oak_pressure_plate[redstone_signal=15]", + "minecraft:dark_oak_pressure_plate[powered=false]": "minecraft:dark_oak_pressure_plate[redstone_signal=0]", + "minecraft:mangrove_pressure_plate[powered=true]": "minecraft:mangrove_pressure_plate[redstone_signal=15]", + "minecraft:mangrove_pressure_plate[powered=false]": "minecraft:mangrove_pressure_plate[redstone_signal=0]", + "minecraft:bamboo_pressure_plate[powered=true]": "minecraft:bamboo_pressure_plate[redstone_signal=15]", + "minecraft:bamboo_pressure_plate[powered=false]": "minecraft:bamboo_pressure_plate[redstone_signal=0]", + "minecraft:redstone_ore[lit=true]": "minecraft:lit_redstone_ore[]", + "minecraft:redstone_ore[lit=false]": "minecraft:redstone_ore[]", + "minecraft:deepslate_redstone_ore[lit=true]": "minecraft:lit_deepslate_redstone_ore[]", + "minecraft:deepslate_redstone_ore[lit=false]": "minecraft:deepslate_redstone_ore[]", + "minecraft:redstone_torch[lit=true]": "minecraft:redstone_torch[torch_facing_direction=top]", + "minecraft:redstone_torch[lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=top]", + "minecraft:redstone_wall_torch[facing=north,lit=true]": "minecraft:redstone_torch[torch_facing_direction=south]", + "minecraft:redstone_wall_torch[facing=north,lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=south]", + "minecraft:redstone_wall_torch[facing=south,lit=true]": "minecraft:redstone_torch[torch_facing_direction=north]", + "minecraft:redstone_wall_torch[facing=south,lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=north]", + "minecraft:redstone_wall_torch[facing=west,lit=true]": "minecraft:redstone_torch[torch_facing_direction=east]", + "minecraft:redstone_wall_torch[facing=west,lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=east]", + "minecraft:redstone_wall_torch[facing=east,lit=true]": "minecraft:redstone_torch[torch_facing_direction=west]", + "minecraft:redstone_wall_torch[facing=east,lit=false]": "minecraft:unlit_redstone_torch[torch_facing_direction=west]", + "minecraft:stone_button[face=floor,facing=north,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=north,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=south,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=south,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=west,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=west,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=east,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:stone_button[face=floor,facing=east,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:stone_button[face=wall,facing=north,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:stone_button[face=wall,facing=north,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:stone_button[face=wall,facing=south,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:stone_button[face=wall,facing=south,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:stone_button[face=wall,facing=west,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:stone_button[face=wall,facing=west,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:stone_button[face=wall,facing=east,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:stone_button[face=wall,facing=east,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:stone_button[face=ceiling,facing=north,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=north,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=south,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=south,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=west,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=west,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=east,powered=true]": "minecraft:stone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:stone_button[face=ceiling,facing=east,powered=false]": "minecraft:stone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:snow[layers=1]": "minecraft:snow_layer[covered_bit=false,height=0]", + "minecraft:snow[layers=2]": "minecraft:snow_layer[covered_bit=false,height=1]", + "minecraft:snow[layers=3]": "minecraft:snow_layer[covered_bit=false,height=2]", + "minecraft:snow[layers=4]": "minecraft:snow_layer[covered_bit=false,height=3]", + "minecraft:snow[layers=5]": "minecraft:snow_layer[covered_bit=false,height=4]", + "minecraft:snow[layers=6]": "minecraft:snow_layer[covered_bit=false,height=5]", + "minecraft:snow[layers=7]": "minecraft:snow_layer[covered_bit=false,height=6]", + "minecraft:snow[layers=8]": "minecraft:snow_layer[covered_bit=false,height=7]", + "minecraft:ice[]": "minecraft:ice[]", + "minecraft:snow_block[]": "minecraft:snow[]", + "minecraft:cactus[age=0]": "minecraft:cactus[age=0]", + "minecraft:cactus[age=1]": "minecraft:cactus[age=1]", + "minecraft:cactus[age=2]": "minecraft:cactus[age=2]", + "minecraft:cactus[age=3]": "minecraft:cactus[age=3]", + "minecraft:cactus[age=4]": "minecraft:cactus[age=4]", + "minecraft:cactus[age=5]": "minecraft:cactus[age=5]", + "minecraft:cactus[age=6]": "minecraft:cactus[age=6]", + "minecraft:cactus[age=7]": "minecraft:cactus[age=7]", + "minecraft:cactus[age=8]": "minecraft:cactus[age=8]", + "minecraft:cactus[age=9]": "minecraft:cactus[age=9]", + "minecraft:cactus[age=10]": "minecraft:cactus[age=10]", + "minecraft:cactus[age=11]": "minecraft:cactus[age=11]", + "minecraft:cactus[age=12]": "minecraft:cactus[age=12]", + "minecraft:cactus[age=13]": "minecraft:cactus[age=13]", + "minecraft:cactus[age=14]": "minecraft:cactus[age=14]", + "minecraft:cactus[age=15]": "minecraft:cactus[age=15]", + "minecraft:clay[]": "minecraft:clay[]", + "minecraft:sugar_cane[age=0]": "minecraft:reeds[age=0]", + "minecraft:sugar_cane[age=1]": "minecraft:reeds[age=1]", + "minecraft:sugar_cane[age=2]": "minecraft:reeds[age=2]", + "minecraft:sugar_cane[age=3]": "minecraft:reeds[age=3]", + "minecraft:sugar_cane[age=4]": "minecraft:reeds[age=4]", + "minecraft:sugar_cane[age=5]": "minecraft:reeds[age=5]", + "minecraft:sugar_cane[age=6]": "minecraft:reeds[age=6]", + "minecraft:sugar_cane[age=7]": "minecraft:reeds[age=7]", + "minecraft:sugar_cane[age=8]": "minecraft:reeds[age=8]", + "minecraft:sugar_cane[age=9]": "minecraft:reeds[age=9]", + "minecraft:sugar_cane[age=10]": "minecraft:reeds[age=10]", + "minecraft:sugar_cane[age=11]": "minecraft:reeds[age=11]", + "minecraft:sugar_cane[age=12]": "minecraft:reeds[age=12]", + "minecraft:sugar_cane[age=13]": "minecraft:reeds[age=13]", + "minecraft:sugar_cane[age=14]": "minecraft:reeds[age=14]", + "minecraft:sugar_cane[age=15]": "minecraft:reeds[age=15]", + "minecraft:jukebox[has_record=true]": "minecraft:jukebox[]", + "minecraft:jukebox[has_record=false]": "minecraft:jukebox[]", + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:oak_fence[]", + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:oak_fence[]", + "minecraft:netherrack[]": "minecraft:netherrack[]", + "minecraft:soul_sand[]": "minecraft:soul_sand[]", + "minecraft:soul_soil[]": "minecraft:soul_soil[]", + "minecraft:basalt[axis=x]": "minecraft:basalt[pillar_axis=x]", + "minecraft:basalt[axis=y]": "minecraft:basalt[pillar_axis=y]", + "minecraft:basalt[axis=z]": "minecraft:basalt[pillar_axis=z]", + "minecraft:polished_basalt[axis=x]": "minecraft:polished_basalt[pillar_axis=x]", + "minecraft:polished_basalt[axis=y]": "minecraft:polished_basalt[pillar_axis=y]", + "minecraft:polished_basalt[axis=z]": "minecraft:polished_basalt[pillar_axis=z]", + "minecraft:soul_torch[]": "minecraft:soul_torch[torch_facing_direction=top]", + "minecraft:soul_wall_torch[facing=north]": "minecraft:soul_torch[torch_facing_direction=south]", + "minecraft:soul_wall_torch[facing=south]": "minecraft:soul_torch[torch_facing_direction=north]", + "minecraft:soul_wall_torch[facing=west]": "minecraft:soul_torch[torch_facing_direction=east]", + "minecraft:soul_wall_torch[facing=east]": "minecraft:soul_torch[torch_facing_direction=west]", + "minecraft:glowstone[]": "minecraft:glowstone[]", + "minecraft:nether_portal[axis=x]": "minecraft:portal[portal_axis=x]", + "minecraft:nether_portal[axis=z]": "minecraft:portal[portal_axis=z]", + "minecraft:carved_pumpkin[facing=north]": "minecraft:carved_pumpkin[minecraft:cardinal_direction=north]", + "minecraft:carved_pumpkin[facing=south]": "minecraft:carved_pumpkin[minecraft:cardinal_direction=south]", + "minecraft:carved_pumpkin[facing=west]": "minecraft:carved_pumpkin[minecraft:cardinal_direction=west]", + "minecraft:carved_pumpkin[facing=east]": "minecraft:carved_pumpkin[minecraft:cardinal_direction=east]", + "minecraft:jack_o_lantern[facing=north]": "minecraft:lit_pumpkin[minecraft:cardinal_direction=north]", + "minecraft:jack_o_lantern[facing=south]": "minecraft:lit_pumpkin[minecraft:cardinal_direction=south]", + "minecraft:jack_o_lantern[facing=west]": "minecraft:lit_pumpkin[minecraft:cardinal_direction=west]", + "minecraft:jack_o_lantern[facing=east]": "minecraft:lit_pumpkin[minecraft:cardinal_direction=east]", + "minecraft:cake[bites=0]": "minecraft:cake[bite_counter=0]", + "minecraft:cake[bites=1]": "minecraft:cake[bite_counter=1]", + "minecraft:cake[bites=2]": "minecraft:cake[bite_counter=2]", + "minecraft:cake[bites=3]": "minecraft:cake[bite_counter=3]", + "minecraft:cake[bites=4]": "minecraft:cake[bite_counter=4]", + "minecraft:cake[bites=5]": "minecraft:cake[bite_counter=5]", + "minecraft:cake[bites=6]": "minecraft:cake[bite_counter=6]", + "minecraft:repeater[delay=1,facing=north,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=north,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=north,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=north,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=south,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=south,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=south,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=south,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=west,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=west,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=west,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=west,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=east,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=east,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=east,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]", + "minecraft:repeater[delay=1,facing=east,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=0]", + "minecraft:repeater[delay=2,facing=north,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=north,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=north,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=north,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=south,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=south,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=south,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=south,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=west,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=west,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=west,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=west,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=east,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=east,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=east,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]", + "minecraft:repeater[delay=2,facing=east,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=1]", + "minecraft:repeater[delay=3,facing=north,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=north,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=north,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=north,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=south,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=south,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=south,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=south,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=west,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=west,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=west,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=west,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=east,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=east,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=east,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]", + "minecraft:repeater[delay=3,facing=east,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=2]", + "minecraft:repeater[delay=4,facing=north,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=north,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=north,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=north,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=north,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=south,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=south,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=south,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=south,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=south,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=west,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=west,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=west,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=west,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=west,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=east,locked=true,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=east,locked=true,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=east,locked=false,powered=true]": "minecraft:powered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]", + "minecraft:repeater[delay=4,facing=east,locked=false,powered=false]": "minecraft:unpowered_repeater[minecraft:cardinal_direction=east,repeater_delay=3]", + "minecraft:white_stained_glass[]": "minecraft:white_stained_glass[]", + "minecraft:orange_stained_glass[]": "minecraft:orange_stained_glass[]", + "minecraft:magenta_stained_glass[]": "minecraft:magenta_stained_glass[]", + "minecraft:light_blue_stained_glass[]": "minecraft:light_blue_stained_glass[]", + "minecraft:yellow_stained_glass[]": "minecraft:yellow_stained_glass[]", + "minecraft:lime_stained_glass[]": "minecraft:lime_stained_glass[]", + "minecraft:pink_stained_glass[]": "minecraft:pink_stained_glass[]", + "minecraft:gray_stained_glass[]": "minecraft:gray_stained_glass[]", + "minecraft:light_gray_stained_glass[]": "minecraft:light_gray_stained_glass[]", + "minecraft:cyan_stained_glass[]": "minecraft:cyan_stained_glass[]", + "minecraft:purple_stained_glass[]": "minecraft:purple_stained_glass[]", + "minecraft:blue_stained_glass[]": "minecraft:blue_stained_glass[]", + "minecraft:brown_stained_glass[]": "minecraft:brown_stained_glass[]", + "minecraft:green_stained_glass[]": "minecraft:green_stained_glass[]", + "minecraft:red_stained_glass[]": "minecraft:red_stained_glass[]", + "minecraft:black_stained_glass[]": "minecraft:black_stained_glass[]", + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:spruce_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:birch_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:jungle_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:acacia_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:cherry_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:dark_oak_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:mangrove_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:mangrove_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:bamboo_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:stone_bricks[]": "minecraft:stonebrick[stone_brick_type=default]", + "minecraft:mossy_stone_bricks[]": "minecraft:stonebrick[stone_brick_type=mossy]", + "minecraft:cracked_stone_bricks[]": "minecraft:stonebrick[stone_brick_type=cracked]", + "minecraft:chiseled_stone_bricks[]": "minecraft:stonebrick[stone_brick_type=chiseled]", + "minecraft:packed_mud[]": "minecraft:packed_mud[]", + "minecraft:mud_bricks[]": "minecraft:mud_bricks[]", + "minecraft:infested_stone[]": "minecraft:monster_egg[monster_egg_stone_type=stone]", + "minecraft:infested_cobblestone[]": "minecraft:monster_egg[monster_egg_stone_type=cobblestone]", + "minecraft:infested_stone_bricks[]": "minecraft:monster_egg[monster_egg_stone_type=stone_brick]", + "minecraft:infested_mossy_stone_bricks[]": "minecraft:monster_egg[monster_egg_stone_type=mossy_stone_brick]", + "minecraft:infested_cracked_stone_bricks[]": "minecraft:monster_egg[monster_egg_stone_type=cracked_stone_brick]", + "minecraft:infested_chiseled_stone_bricks[]": "minecraft:monster_egg[monster_egg_stone_type=chiseled_stone_brick]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=3]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=9]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=6]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=1]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=2]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=7]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=8]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=4]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=5]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]": "minecraft:brown_mushroom_block[huge_mushroom_bits=14]", + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]": "minecraft:brown_mushroom_block[huge_mushroom_bits=0]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=3]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=9]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=6]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=1]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=2]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=7]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=8]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=4]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=5]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=14]", + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=0]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=true]": "minecraft:red_mushroom_block[huge_mushroom_bits=15]", + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false]": "minecraft:red_mushroom_block[huge_mushroom_bits=0]", + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:iron_bars[]", + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:iron_bars[]", + "minecraft:chain[axis=x,waterlogged=true]": "minecraft:chain[pillar_axis=x]", + "minecraft:chain[axis=x,waterlogged=false]": "minecraft:chain[pillar_axis=x]", + "minecraft:chain[axis=y,waterlogged=true]": "minecraft:chain[pillar_axis=y]", + "minecraft:chain[axis=y,waterlogged=false]": "minecraft:chain[pillar_axis=y]", + "minecraft:chain[axis=z,waterlogged=true]": "minecraft:chain[pillar_axis=z]", + "minecraft:chain[axis=z,waterlogged=false]": "minecraft:chain[pillar_axis=z]", + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:glass_pane[]", + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:glass_pane[]", + "minecraft:pumpkin[]": "minecraft:pumpkin[minecraft:cardinal_direction=north]", + "minecraft:melon[]": "minecraft:melon_block[]", + "minecraft:attached_pumpkin_stem[facing=north]": "minecraft:pumpkin_stem[facing_direction=2,growth=7]", + "minecraft:attached_pumpkin_stem[facing=south]": "minecraft:pumpkin_stem[facing_direction=3,growth=7]", + "minecraft:attached_pumpkin_stem[facing=west]": "minecraft:pumpkin_stem[facing_direction=4,growth=7]", + "minecraft:attached_pumpkin_stem[facing=east]": "minecraft:pumpkin_stem[facing_direction=5,growth=7]", + "minecraft:attached_melon_stem[facing=north]": "minecraft:melon_stem[facing_direction=2,growth=7]", + "minecraft:attached_melon_stem[facing=south]": "minecraft:melon_stem[facing_direction=3,growth=7]", + "minecraft:attached_melon_stem[facing=west]": "minecraft:melon_stem[facing_direction=4,growth=7]", + "minecraft:attached_melon_stem[facing=east]": "minecraft:melon_stem[facing_direction=5,growth=7]", + "minecraft:pumpkin_stem[age=0]": "minecraft:pumpkin_stem[facing_direction=0,growth=0]", + "minecraft:pumpkin_stem[age=1]": "minecraft:pumpkin_stem[facing_direction=0,growth=1]", + "minecraft:pumpkin_stem[age=2]": "minecraft:pumpkin_stem[facing_direction=0,growth=2]", + "minecraft:pumpkin_stem[age=3]": "minecraft:pumpkin_stem[facing_direction=0,growth=3]", + "minecraft:pumpkin_stem[age=4]": "minecraft:pumpkin_stem[facing_direction=0,growth=4]", + "minecraft:pumpkin_stem[age=5]": "minecraft:pumpkin_stem[facing_direction=0,growth=5]", + "minecraft:pumpkin_stem[age=6]": "minecraft:pumpkin_stem[facing_direction=0,growth=6]", + "minecraft:pumpkin_stem[age=7]": "minecraft:pumpkin_stem[facing_direction=0,growth=7]", + "minecraft:melon_stem[age=0]": "minecraft:melon_stem[facing_direction=0,growth=0]", + "minecraft:melon_stem[age=1]": "minecraft:melon_stem[facing_direction=0,growth=1]", + "minecraft:melon_stem[age=2]": "minecraft:melon_stem[facing_direction=0,growth=2]", + "minecraft:melon_stem[age=3]": "minecraft:melon_stem[facing_direction=0,growth=3]", + "minecraft:melon_stem[age=4]": "minecraft:melon_stem[facing_direction=0,growth=4]", + "minecraft:melon_stem[age=5]": "minecraft:melon_stem[facing_direction=0,growth=5]", + "minecraft:melon_stem[age=6]": "minecraft:melon_stem[facing_direction=0,growth=6]", + "minecraft:melon_stem[age=7]": "minecraft:melon_stem[facing_direction=0,growth=7]", + "minecraft:vine[east=true,north=true,south=true,up=true,west=true]": "minecraft:vine[vine_direction_bits=15]", + "minecraft:vine[east=true,north=true,south=true,up=true,west=false]": "minecraft:vine[vine_direction_bits=13]", + "minecraft:vine[east=true,north=true,south=true,up=false,west=true]": "minecraft:vine[vine_direction_bits=15]", + "minecraft:vine[east=true,north=true,south=true,up=false,west=false]": "minecraft:vine[vine_direction_bits=13]", + "minecraft:vine[east=true,north=true,south=false,up=true,west=true]": "minecraft:vine[vine_direction_bits=14]", + "minecraft:vine[east=true,north=true,south=false,up=true,west=false]": "minecraft:vine[vine_direction_bits=12]", + "minecraft:vine[east=true,north=true,south=false,up=false,west=true]": "minecraft:vine[vine_direction_bits=14]", + "minecraft:vine[east=true,north=true,south=false,up=false,west=false]": "minecraft:vine[vine_direction_bits=12]", + "minecraft:vine[east=true,north=false,south=true,up=true,west=true]": "minecraft:vine[vine_direction_bits=11]", + "minecraft:vine[east=true,north=false,south=true,up=true,west=false]": "minecraft:vine[vine_direction_bits=9]", + "minecraft:vine[east=true,north=false,south=true,up=false,west=true]": "minecraft:vine[vine_direction_bits=11]", + "minecraft:vine[east=true,north=false,south=true,up=false,west=false]": "minecraft:vine[vine_direction_bits=9]", + "minecraft:vine[east=true,north=false,south=false,up=true,west=true]": "minecraft:vine[vine_direction_bits=10]", + "minecraft:vine[east=true,north=false,south=false,up=true,west=false]": "minecraft:vine[vine_direction_bits=8]", + "minecraft:vine[east=true,north=false,south=false,up=false,west=true]": "minecraft:vine[vine_direction_bits=10]", + "minecraft:vine[east=true,north=false,south=false,up=false,west=false]": "minecraft:vine[vine_direction_bits=8]", + "minecraft:vine[east=false,north=true,south=true,up=true,west=true]": "minecraft:vine[vine_direction_bits=7]", + "minecraft:vine[east=false,north=true,south=true,up=true,west=false]": "minecraft:vine[vine_direction_bits=5]", + "minecraft:vine[east=false,north=true,south=true,up=false,west=true]": "minecraft:vine[vine_direction_bits=7]", + "minecraft:vine[east=false,north=true,south=true,up=false,west=false]": "minecraft:vine[vine_direction_bits=5]", + "minecraft:vine[east=false,north=true,south=false,up=true,west=true]": "minecraft:vine[vine_direction_bits=6]", + "minecraft:vine[east=false,north=true,south=false,up=true,west=false]": "minecraft:vine[vine_direction_bits=4]", + "minecraft:vine[east=false,north=true,south=false,up=false,west=true]": "minecraft:vine[vine_direction_bits=6]", + "minecraft:vine[east=false,north=true,south=false,up=false,west=false]": "minecraft:vine[vine_direction_bits=4]", + "minecraft:vine[east=false,north=false,south=true,up=true,west=true]": "minecraft:vine[vine_direction_bits=3]", + "minecraft:vine[east=false,north=false,south=true,up=true,west=false]": "minecraft:vine[vine_direction_bits=1]", + "minecraft:vine[east=false,north=false,south=true,up=false,west=true]": "minecraft:vine[vine_direction_bits=3]", + "minecraft:vine[east=false,north=false,south=true,up=false,west=false]": "minecraft:vine[vine_direction_bits=1]", + "minecraft:vine[east=false,north=false,south=false,up=true,west=true]": "minecraft:vine[vine_direction_bits=2]", + "minecraft:vine[east=false,north=false,south=false,up=true,west=false]": "minecraft:vine[vine_direction_bits=0]", + "minecraft:vine[east=false,north=false,south=false,up=false,west=true]": "minecraft:vine[vine_direction_bits=2]", + "minecraft:vine[east=false,north=false,south=false,up=false,west=false]": "minecraft:vine[vine_direction_bits=0]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=63]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=55]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=63]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=55]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=61]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=53]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=61]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=53]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=59]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=51]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=59]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=51]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=57]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=49]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=57]", + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=49]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=47]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=39]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=47]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=39]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=45]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=37]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=45]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=37]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=43]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=35]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=43]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=35]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=41]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=33]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=41]", + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=33]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=31]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=23]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=31]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=23]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=29]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=21]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=29]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=21]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=27]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=19]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=27]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=19]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=25]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=17]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=25]", + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=17]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=15]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=7]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=15]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=7]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=13]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=5]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=13]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=5]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=11]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=3]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=11]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=3]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=9]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=1]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=9]", + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=1]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=62]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=54]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=62]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=54]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=60]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=52]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=60]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=52]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=58]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=50]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=58]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=50]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=56]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=48]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=56]", + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=48]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=46]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=38]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=46]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=38]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=44]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=36]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=44]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=36]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=42]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=34]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=42]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=34]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=40]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=32]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=40]", + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=32]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=30]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=22]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=30]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=22]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=28]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=20]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=28]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=20]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=26]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=18]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=26]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=18]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=24]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=16]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=24]", + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=16]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=14]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=6]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=14]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=6]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=12]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=4]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=12]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=4]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=10]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=2]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=10]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=2]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=8]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=0]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:glow_lichen[multi_face_direction_bits=8]", + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:glow_lichen[multi_face_direction_bits=0]", + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mud_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mud_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mycelium[snowy=true]": "minecraft:mycelium[]", + "minecraft:mycelium[snowy=false]": "minecraft:mycelium[]", + "minecraft:lily_pad[]": "minecraft:waterlily[]", + "minecraft:nether_bricks[]": "minecraft:nether_brick[]", + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:nether_brick_fence[]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:nether_wart[age=0]": "minecraft:nether_wart[age=0]", + "minecraft:nether_wart[age=1]": "minecraft:nether_wart[age=1]", + "minecraft:nether_wart[age=2]": "minecraft:nether_wart[age=2]", + "minecraft:nether_wart[age=3]": "minecraft:nether_wart[age=3]", + "minecraft:enchanting_table[]": "minecraft:enchanting_table[]", + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=true,brewing_stand_slot_b_bit=true,brewing_stand_slot_c_bit=true]", + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=true,brewing_stand_slot_b_bit=true,brewing_stand_slot_c_bit=false]", + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=true,brewing_stand_slot_b_bit=false,brewing_stand_slot_c_bit=true]", + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=true,brewing_stand_slot_b_bit=false,brewing_stand_slot_c_bit=false]", + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=false,brewing_stand_slot_b_bit=true,brewing_stand_slot_c_bit=true]", + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=false,brewing_stand_slot_b_bit=true,brewing_stand_slot_c_bit=false]", + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=false,brewing_stand_slot_b_bit=false,brewing_stand_slot_c_bit=true]", + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]": "minecraft:brewing_stand[brewing_stand_slot_a_bit=false,brewing_stand_slot_b_bit=false,brewing_stand_slot_c_bit=false]", + "minecraft:cauldron[]": "minecraft:cauldron[cauldron_liquid=water,fill_level=0]", + "minecraft:water_cauldron[level=1]": "minecraft:cauldron[cauldron_liquid=water,fill_level=3]", + "minecraft:water_cauldron[level=2]": "minecraft:cauldron[cauldron_liquid=water,fill_level=4]", + "minecraft:water_cauldron[level=3]": "minecraft:cauldron[cauldron_liquid=water,fill_level=6]", + "minecraft:lava_cauldron[]": "minecraft:cauldron[cauldron_liquid=lava,fill_level=6]", + "minecraft:powder_snow_cauldron[level=1]": "minecraft:cauldron[cauldron_liquid=powder_snow,fill_level=3]", + "minecraft:powder_snow_cauldron[level=2]": "minecraft:cauldron[cauldron_liquid=powder_snow,fill_level=4]", + "minecraft:powder_snow_cauldron[level=3]": "minecraft:cauldron[cauldron_liquid=powder_snow,fill_level=6]", + "minecraft:end_portal[]": "minecraft:end_portal[]", + "minecraft:end_portal_frame[eye=true,facing=north]": "minecraft:end_portal_frame[end_portal_eye_bit=true,minecraft:cardinal_direction=north]", + "minecraft:end_portal_frame[eye=true,facing=south]": "minecraft:end_portal_frame[end_portal_eye_bit=true,minecraft:cardinal_direction=south]", + "minecraft:end_portal_frame[eye=true,facing=west]": "minecraft:end_portal_frame[end_portal_eye_bit=true,minecraft:cardinal_direction=west]", + "minecraft:end_portal_frame[eye=true,facing=east]": "minecraft:end_portal_frame[end_portal_eye_bit=true,minecraft:cardinal_direction=east]", + "minecraft:end_portal_frame[eye=false,facing=north]": "minecraft:end_portal_frame[end_portal_eye_bit=false,minecraft:cardinal_direction=north]", + "minecraft:end_portal_frame[eye=false,facing=south]": "minecraft:end_portal_frame[end_portal_eye_bit=false,minecraft:cardinal_direction=south]", + "minecraft:end_portal_frame[eye=false,facing=west]": "minecraft:end_portal_frame[end_portal_eye_bit=false,minecraft:cardinal_direction=west]", + "minecraft:end_portal_frame[eye=false,facing=east]": "minecraft:end_portal_frame[end_portal_eye_bit=false,minecraft:cardinal_direction=east]", + "minecraft:end_stone[]": "minecraft:end_stone[]", + "minecraft:dragon_egg[]": "minecraft:dragon_egg[]", + "minecraft:redstone_lamp[lit=true]": "minecraft:lit_redstone_lamp[]", + "minecraft:redstone_lamp[lit=false]": "minecraft:redstone_lamp[]", + "minecraft:cocoa[age=0,facing=north]": "minecraft:cocoa[age=0,direction=2]", + "minecraft:cocoa[age=0,facing=south]": "minecraft:cocoa[age=0,direction=0]", + "minecraft:cocoa[age=0,facing=west]": "minecraft:cocoa[age=0,direction=1]", + "minecraft:cocoa[age=0,facing=east]": "minecraft:cocoa[age=0,direction=3]", + "minecraft:cocoa[age=1,facing=north]": "minecraft:cocoa[age=1,direction=2]", + "minecraft:cocoa[age=1,facing=south]": "minecraft:cocoa[age=1,direction=0]", + "minecraft:cocoa[age=1,facing=west]": "minecraft:cocoa[age=1,direction=1]", + "minecraft:cocoa[age=1,facing=east]": "minecraft:cocoa[age=1,direction=3]", + "minecraft:cocoa[age=2,facing=north]": "minecraft:cocoa[age=2,direction=2]", + "minecraft:cocoa[age=2,facing=south]": "minecraft:cocoa[age=2,direction=0]", + "minecraft:cocoa[age=2,facing=west]": "minecraft:cocoa[age=2,direction=1]", + "minecraft:cocoa[age=2,facing=east]": "minecraft:cocoa[age=2,direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:emerald_ore[]": "minecraft:emerald_ore[]", + "minecraft:deepslate_emerald_ore[]": "minecraft:deepslate_emerald_ore[]", + "minecraft:ender_chest[facing=north,waterlogged=true]": "minecraft:ender_chest[minecraft:cardinal_direction=north]", + "minecraft:ender_chest[facing=north,waterlogged=false]": "minecraft:ender_chest[minecraft:cardinal_direction=north]", + "minecraft:ender_chest[facing=south,waterlogged=true]": "minecraft:ender_chest[minecraft:cardinal_direction=south]", + "minecraft:ender_chest[facing=south,waterlogged=false]": "minecraft:ender_chest[minecraft:cardinal_direction=south]", + "minecraft:ender_chest[facing=west,waterlogged=true]": "minecraft:ender_chest[minecraft:cardinal_direction=west]", + "minecraft:ender_chest[facing=west,waterlogged=false]": "minecraft:ender_chest[minecraft:cardinal_direction=west]", + "minecraft:ender_chest[facing=east,waterlogged=true]": "minecraft:ender_chest[minecraft:cardinal_direction=east]", + "minecraft:ender_chest[facing=east,waterlogged=false]": "minecraft:ender_chest[minecraft:cardinal_direction=east]", + "minecraft:tripwire_hook[attached=true,facing=north,powered=true]": "minecraft:tripwire_hook[attached_bit=true,direction=2,powered_bit=true]", + "minecraft:tripwire_hook[attached=true,facing=north,powered=false]": "minecraft:tripwire_hook[attached_bit=true,direction=2,powered_bit=false]", + "minecraft:tripwire_hook[attached=true,facing=south,powered=true]": "minecraft:tripwire_hook[attached_bit=true,direction=0,powered_bit=true]", + "minecraft:tripwire_hook[attached=true,facing=south,powered=false]": "minecraft:tripwire_hook[attached_bit=true,direction=0,powered_bit=false]", + "minecraft:tripwire_hook[attached=true,facing=west,powered=true]": "minecraft:tripwire_hook[attached_bit=true,direction=1,powered_bit=true]", + "minecraft:tripwire_hook[attached=true,facing=west,powered=false]": "minecraft:tripwire_hook[attached_bit=true,direction=1,powered_bit=false]", + "minecraft:tripwire_hook[attached=true,facing=east,powered=true]": "minecraft:tripwire_hook[attached_bit=true,direction=3,powered_bit=true]", + "minecraft:tripwire_hook[attached=true,facing=east,powered=false]": "minecraft:tripwire_hook[attached_bit=true,direction=3,powered_bit=false]", + "minecraft:tripwire_hook[attached=false,facing=north,powered=true]": "minecraft:tripwire_hook[attached_bit=false,direction=2,powered_bit=true]", + "minecraft:tripwire_hook[attached=false,facing=north,powered=false]": "minecraft:tripwire_hook[attached_bit=false,direction=2,powered_bit=false]", + "minecraft:tripwire_hook[attached=false,facing=south,powered=true]": "minecraft:tripwire_hook[attached_bit=false,direction=0,powered_bit=true]", + "minecraft:tripwire_hook[attached=false,facing=south,powered=false]": "minecraft:tripwire_hook[attached_bit=false,direction=0,powered_bit=false]", + "minecraft:tripwire_hook[attached=false,facing=west,powered=true]": "minecraft:tripwire_hook[attached_bit=false,direction=1,powered_bit=true]", + "minecraft:tripwire_hook[attached=false,facing=west,powered=false]": "minecraft:tripwire_hook[attached_bit=false,direction=1,powered_bit=false]", + "minecraft:tripwire_hook[attached=false,facing=east,powered=true]": "minecraft:tripwire_hook[attached_bit=false,direction=3,powered_bit=true]", + "minecraft:tripwire_hook[attached=false,facing=east,powered=false]": "minecraft:tripwire_hook[attached_bit=false,direction=3,powered_bit=false]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=true,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=true,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=true,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": "minecraft:trip_wire[attached_bit=false,disarmed_bit=false,powered_bit=false,suspended_bit=true]", + "minecraft:emerald_block[]": "minecraft:emerald_block[]", + "minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:spruce_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:birch_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:jungle_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:command_block[conditional=true,facing=north]": "minecraft:command_block[conditional_bit=true,facing_direction=2]", + "minecraft:command_block[conditional=true,facing=east]": "minecraft:command_block[conditional_bit=true,facing_direction=5]", + "minecraft:command_block[conditional=true,facing=south]": "minecraft:command_block[conditional_bit=true,facing_direction=3]", + "minecraft:command_block[conditional=true,facing=west]": "minecraft:command_block[conditional_bit=true,facing_direction=4]", + "minecraft:command_block[conditional=true,facing=up]": "minecraft:command_block[conditional_bit=true,facing_direction=1]", + "minecraft:command_block[conditional=true,facing=down]": "minecraft:command_block[conditional_bit=true,facing_direction=0]", + "minecraft:command_block[conditional=false,facing=north]": "minecraft:command_block[conditional_bit=false,facing_direction=2]", + "minecraft:command_block[conditional=false,facing=east]": "minecraft:command_block[conditional_bit=false,facing_direction=5]", + "minecraft:command_block[conditional=false,facing=south]": "minecraft:command_block[conditional_bit=false,facing_direction=3]", + "minecraft:command_block[conditional=false,facing=west]": "minecraft:command_block[conditional_bit=false,facing_direction=4]", + "minecraft:command_block[conditional=false,facing=up]": "minecraft:command_block[conditional_bit=false,facing_direction=1]", + "minecraft:command_block[conditional=false,facing=down]": "minecraft:command_block[conditional_bit=false,facing_direction=0]", + "minecraft:beacon[]": "minecraft:beacon[]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_cobblestone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:flower_pot[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_torchflower[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_oak_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_spruce_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_birch_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_jungle_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_acacia_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_cherry_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_dark_oak_sapling[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_mangrove_propagule[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_fern[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_dandelion[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_poppy[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_blue_orchid[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_allium[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_azure_bluet[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_red_tulip[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_orange_tulip[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_white_tulip[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_pink_tulip[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_oxeye_daisy[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_cornflower[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_lily_of_the_valley[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_wither_rose[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_red_mushroom[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_brown_mushroom[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_dead_bush[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_cactus[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:carrots[age=0]": "minecraft:carrots[growth=0]", + "minecraft:carrots[age=1]": "minecraft:carrots[growth=1]", + "minecraft:carrots[age=2]": "minecraft:carrots[growth=2]", + "minecraft:carrots[age=3]": "minecraft:carrots[growth=3]", + "minecraft:carrots[age=4]": "minecraft:carrots[growth=4]", + "minecraft:carrots[age=5]": "minecraft:carrots[growth=5]", + "minecraft:carrots[age=6]": "minecraft:carrots[growth=6]", + "minecraft:carrots[age=7]": "minecraft:carrots[growth=7]", + "minecraft:potatoes[age=0]": "minecraft:potatoes[growth=0]", + "minecraft:potatoes[age=1]": "minecraft:potatoes[growth=1]", + "minecraft:potatoes[age=2]": "minecraft:potatoes[growth=2]", + "minecraft:potatoes[age=3]": "minecraft:potatoes[growth=3]", + "minecraft:potatoes[age=4]": "minecraft:potatoes[growth=4]", + "minecraft:potatoes[age=5]": "minecraft:potatoes[growth=5]", + "minecraft:potatoes[age=6]": "minecraft:potatoes[growth=6]", + "minecraft:potatoes[age=7]": "minecraft:potatoes[growth=7]", + "minecraft:oak_button[face=floor,facing=north,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=north,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=south,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=south,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=west,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=west,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=east,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:oak_button[face=floor,facing=east,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:oak_button[face=wall,facing=north,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:oak_button[face=wall,facing=north,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:oak_button[face=wall,facing=south,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:oak_button[face=wall,facing=south,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:oak_button[face=wall,facing=west,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:oak_button[face=wall,facing=west,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:oak_button[face=wall,facing=east,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:oak_button[face=wall,facing=east,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:oak_button[face=ceiling,facing=north,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=north,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=south,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=south,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=west,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=west,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=east,powered=true]": "minecraft:wooden_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:oak_button[face=ceiling,facing=east,powered=false]": "minecraft:wooden_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:spruce_button[face=floor,facing=north,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=north,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=south,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=south,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=west,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=west,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=east,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:spruce_button[face=floor,facing=east,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:spruce_button[face=wall,facing=north,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:spruce_button[face=wall,facing=north,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:spruce_button[face=wall,facing=south,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:spruce_button[face=wall,facing=south,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:spruce_button[face=wall,facing=west,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:spruce_button[face=wall,facing=west,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:spruce_button[face=wall,facing=east,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:spruce_button[face=wall,facing=east,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:spruce_button[face=ceiling,facing=north,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=north,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=south,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=south,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=west,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=west,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=east,powered=true]": "minecraft:spruce_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:spruce_button[face=ceiling,facing=east,powered=false]": "minecraft:spruce_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:birch_button[face=floor,facing=north,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=north,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=south,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=south,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=west,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=west,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=east,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:birch_button[face=floor,facing=east,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:birch_button[face=wall,facing=north,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:birch_button[face=wall,facing=north,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:birch_button[face=wall,facing=south,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:birch_button[face=wall,facing=south,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:birch_button[face=wall,facing=west,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:birch_button[face=wall,facing=west,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:birch_button[face=wall,facing=east,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:birch_button[face=wall,facing=east,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:birch_button[face=ceiling,facing=north,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=north,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=south,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=south,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=west,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=west,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=east,powered=true]": "minecraft:birch_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:birch_button[face=ceiling,facing=east,powered=false]": "minecraft:birch_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:jungle_button[face=floor,facing=north,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=north,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=south,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=south,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=west,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=west,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=east,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:jungle_button[face=floor,facing=east,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:jungle_button[face=wall,facing=north,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:jungle_button[face=wall,facing=north,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:jungle_button[face=wall,facing=south,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:jungle_button[face=wall,facing=south,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:jungle_button[face=wall,facing=west,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:jungle_button[face=wall,facing=west,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:jungle_button[face=wall,facing=east,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:jungle_button[face=wall,facing=east,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:jungle_button[face=ceiling,facing=north,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=north,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=south,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=south,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=west,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=west,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=east,powered=true]": "minecraft:jungle_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:jungle_button[face=ceiling,facing=east,powered=false]": "minecraft:jungle_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:acacia_button[face=floor,facing=north,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=north,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=south,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=south,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=west,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=west,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=east,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:acacia_button[face=floor,facing=east,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:acacia_button[face=wall,facing=north,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:acacia_button[face=wall,facing=north,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:acacia_button[face=wall,facing=south,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:acacia_button[face=wall,facing=south,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:acacia_button[face=wall,facing=west,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:acacia_button[face=wall,facing=west,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:acacia_button[face=wall,facing=east,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:acacia_button[face=wall,facing=east,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:acacia_button[face=ceiling,facing=north,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=north,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=south,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=south,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=west,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=west,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=east,powered=true]": "minecraft:acacia_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:acacia_button[face=ceiling,facing=east,powered=false]": "minecraft:acacia_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:cherry_button[face=floor,facing=north,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=north,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=south,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=south,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=west,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=west,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=east,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:cherry_button[face=floor,facing=east,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:cherry_button[face=wall,facing=north,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:cherry_button[face=wall,facing=north,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:cherry_button[face=wall,facing=south,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:cherry_button[face=wall,facing=south,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:cherry_button[face=wall,facing=west,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:cherry_button[face=wall,facing=west,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:cherry_button[face=wall,facing=east,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:cherry_button[face=wall,facing=east,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:cherry_button[face=ceiling,facing=north,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=north,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=south,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=south,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=west,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=west,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=east,powered=true]": "minecraft:cherry_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:cherry_button[face=ceiling,facing=east,powered=false]": "minecraft:cherry_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:dark_oak_button[face=floor,facing=north,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=north,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=south,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=south,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=west,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=west,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=east,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:dark_oak_button[face=floor,facing=east,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:dark_oak_button[face=wall,facing=north,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:dark_oak_button[face=wall,facing=north,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:dark_oak_button[face=wall,facing=south,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:dark_oak_button[face=wall,facing=south,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:dark_oak_button[face=wall,facing=west,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:dark_oak_button[face=wall,facing=west,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:dark_oak_button[face=wall,facing=east,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:dark_oak_button[face=wall,facing=east,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:dark_oak_button[face=ceiling,facing=north,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=north,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=south,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=south,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=west,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=west,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=east,powered=true]": "minecraft:dark_oak_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:dark_oak_button[face=ceiling,facing=east,powered=false]": "minecraft:dark_oak_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:mangrove_button[face=floor,facing=north,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=north,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=south,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=south,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=west,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=west,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=east,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:mangrove_button[face=floor,facing=east,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:mangrove_button[face=wall,facing=north,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:mangrove_button[face=wall,facing=north,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:mangrove_button[face=wall,facing=south,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:mangrove_button[face=wall,facing=south,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:mangrove_button[face=wall,facing=west,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:mangrove_button[face=wall,facing=west,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:mangrove_button[face=wall,facing=east,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:mangrove_button[face=wall,facing=east,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:mangrove_button[face=ceiling,facing=north,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=north,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=south,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=south,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=west,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=west,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=east,powered=true]": "minecraft:mangrove_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:mangrove_button[face=ceiling,facing=east,powered=false]": "minecraft:mangrove_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:bamboo_button[face=floor,facing=north,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=north,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=south,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=south,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=west,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=west,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=east,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:bamboo_button[face=floor,facing=east,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:bamboo_button[face=wall,facing=north,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:bamboo_button[face=wall,facing=north,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:bamboo_button[face=wall,facing=south,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:bamboo_button[face=wall,facing=south,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:bamboo_button[face=wall,facing=west,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:bamboo_button[face=wall,facing=west,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:bamboo_button[face=wall,facing=east,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:bamboo_button[face=wall,facing=east,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:bamboo_button[face=ceiling,facing=north,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=north,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=south,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=south,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=west,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=west,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=east,powered=true]": "minecraft:bamboo_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:bamboo_button[face=ceiling,facing=east,powered=false]": "minecraft:bamboo_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:skeleton_skull[powered=true,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=true,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_skull[powered=false,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:skeleton_wall_skull[facing=north,powered=true]": "minecraft:skull[facing_direction=2]", + "minecraft:skeleton_wall_skull[facing=north,powered=false]": "minecraft:skull[facing_direction=2]", + "minecraft:skeleton_wall_skull[facing=south,powered=true]": "minecraft:skull[facing_direction=3]", + "minecraft:skeleton_wall_skull[facing=south,powered=false]": "minecraft:skull[facing_direction=3]", + "minecraft:skeleton_wall_skull[facing=west,powered=true]": "minecraft:skull[facing_direction=4]", + "minecraft:skeleton_wall_skull[facing=west,powered=false]": "minecraft:skull[facing_direction=4]", + "minecraft:skeleton_wall_skull[facing=east,powered=true]": "minecraft:skull[facing_direction=5]", + "minecraft:skeleton_wall_skull[facing=east,powered=false]": "minecraft:skull[facing_direction=5]", + "minecraft:wither_skeleton_skull[powered=true,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=true,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_skull[powered=false,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:wither_skeleton_wall_skull[facing=north,powered=true]": "minecraft:skull[facing_direction=2]", + "minecraft:wither_skeleton_wall_skull[facing=north,powered=false]": "minecraft:skull[facing_direction=2]", + "minecraft:wither_skeleton_wall_skull[facing=south,powered=true]": "minecraft:skull[facing_direction=3]", + "minecraft:wither_skeleton_wall_skull[facing=south,powered=false]": "minecraft:skull[facing_direction=3]", + "minecraft:wither_skeleton_wall_skull[facing=west,powered=true]": "minecraft:skull[facing_direction=4]", + "minecraft:wither_skeleton_wall_skull[facing=west,powered=false]": "minecraft:skull[facing_direction=4]", + "minecraft:wither_skeleton_wall_skull[facing=east,powered=true]": "minecraft:skull[facing_direction=5]", + "minecraft:wither_skeleton_wall_skull[facing=east,powered=false]": "minecraft:skull[facing_direction=5]", + "minecraft:zombie_head[powered=true,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=true,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_head[powered=false,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:zombie_wall_head[facing=north,powered=true]": "minecraft:skull[facing_direction=2]", + "minecraft:zombie_wall_head[facing=north,powered=false]": "minecraft:skull[facing_direction=2]", + "minecraft:zombie_wall_head[facing=south,powered=true]": "minecraft:skull[facing_direction=3]", + "minecraft:zombie_wall_head[facing=south,powered=false]": "minecraft:skull[facing_direction=3]", + "minecraft:zombie_wall_head[facing=west,powered=true]": "minecraft:skull[facing_direction=4]", + "minecraft:zombie_wall_head[facing=west,powered=false]": "minecraft:skull[facing_direction=4]", + "minecraft:zombie_wall_head[facing=east,powered=true]": "minecraft:skull[facing_direction=5]", + "minecraft:zombie_wall_head[facing=east,powered=false]": "minecraft:skull[facing_direction=5]", + "minecraft:player_head[powered=true,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=true,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:player_head[powered=false,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:player_wall_head[facing=north,powered=true]": "minecraft:skull[facing_direction=2]", + "minecraft:player_wall_head[facing=north,powered=false]": "minecraft:skull[facing_direction=2]", + "minecraft:player_wall_head[facing=south,powered=true]": "minecraft:skull[facing_direction=3]", + "minecraft:player_wall_head[facing=south,powered=false]": "minecraft:skull[facing_direction=3]", + "minecraft:player_wall_head[facing=west,powered=true]": "minecraft:skull[facing_direction=4]", + "minecraft:player_wall_head[facing=west,powered=false]": "minecraft:skull[facing_direction=4]", + "minecraft:player_wall_head[facing=east,powered=true]": "minecraft:skull[facing_direction=5]", + "minecraft:player_wall_head[facing=east,powered=false]": "minecraft:skull[facing_direction=5]", + "minecraft:creeper_head[powered=true,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=true,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_head[powered=false,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:creeper_wall_head[facing=north,powered=true]": "minecraft:skull[facing_direction=2]", + "minecraft:creeper_wall_head[facing=north,powered=false]": "minecraft:skull[facing_direction=2]", + "minecraft:creeper_wall_head[facing=south,powered=true]": "minecraft:skull[facing_direction=3]", + "minecraft:creeper_wall_head[facing=south,powered=false]": "minecraft:skull[facing_direction=3]", + "minecraft:creeper_wall_head[facing=west,powered=true]": "minecraft:skull[facing_direction=4]", + "minecraft:creeper_wall_head[facing=west,powered=false]": "minecraft:skull[facing_direction=4]", + "minecraft:creeper_wall_head[facing=east,powered=true]": "minecraft:skull[facing_direction=5]", + "minecraft:creeper_wall_head[facing=east,powered=false]": "minecraft:skull[facing_direction=5]", + "minecraft:dragon_head[powered=true,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=true,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_head[powered=false,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:dragon_wall_head[facing=north,powered=true]": "minecraft:skull[facing_direction=2]", + "minecraft:dragon_wall_head[facing=north,powered=false]": "minecraft:skull[facing_direction=2]", + "minecraft:dragon_wall_head[facing=south,powered=true]": "minecraft:skull[facing_direction=3]", + "minecraft:dragon_wall_head[facing=south,powered=false]": "minecraft:skull[facing_direction=3]", + "minecraft:dragon_wall_head[facing=west,powered=true]": "minecraft:skull[facing_direction=4]", + "minecraft:dragon_wall_head[facing=west,powered=false]": "minecraft:skull[facing_direction=4]", + "minecraft:dragon_wall_head[facing=east,powered=true]": "minecraft:skull[facing_direction=5]", + "minecraft:dragon_wall_head[facing=east,powered=false]": "minecraft:skull[facing_direction=5]", + "minecraft:piglin_head[powered=true,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=true,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=0]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=1]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=2]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=3]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=4]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=5]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=6]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=7]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=8]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=9]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=10]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=11]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=12]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=13]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=14]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_head[powered=false,rotation=15]": "minecraft:skull[facing_direction=1]", + "minecraft:piglin_wall_head[facing=north,powered=true]": "minecraft:skull[facing_direction=2]", + "minecraft:piglin_wall_head[facing=north,powered=false]": "minecraft:skull[facing_direction=2]", + "minecraft:piglin_wall_head[facing=south,powered=true]": "minecraft:skull[facing_direction=3]", + "minecraft:piglin_wall_head[facing=south,powered=false]": "minecraft:skull[facing_direction=3]", + "minecraft:piglin_wall_head[facing=west,powered=true]": "minecraft:skull[facing_direction=4]", + "minecraft:piglin_wall_head[facing=west,powered=false]": "minecraft:skull[facing_direction=4]", + "minecraft:piglin_wall_head[facing=east,powered=true]": "minecraft:skull[facing_direction=5]", + "minecraft:piglin_wall_head[facing=east,powered=false]": "minecraft:skull[facing_direction=5]", + "minecraft:anvil[facing=north]": "minecraft:anvil[damage=undamaged,minecraft:cardinal_direction=north]", + "minecraft:anvil[facing=south]": "minecraft:anvil[damage=undamaged,minecraft:cardinal_direction=south]", + "minecraft:anvil[facing=west]": "minecraft:anvil[damage=undamaged,minecraft:cardinal_direction=west]", + "minecraft:anvil[facing=east]": "minecraft:anvil[damage=undamaged,minecraft:cardinal_direction=east]", + "minecraft:chipped_anvil[facing=north]": "minecraft:anvil[damage=slightly_damaged,minecraft:cardinal_direction=north]", + "minecraft:chipped_anvil[facing=south]": "minecraft:anvil[damage=slightly_damaged,minecraft:cardinal_direction=south]", + "minecraft:chipped_anvil[facing=west]": "minecraft:anvil[damage=slightly_damaged,minecraft:cardinal_direction=west]", + "minecraft:chipped_anvil[facing=east]": "minecraft:anvil[damage=slightly_damaged,minecraft:cardinal_direction=east]", + "minecraft:damaged_anvil[facing=north]": "minecraft:anvil[damage=very_damaged,minecraft:cardinal_direction=north]", + "minecraft:damaged_anvil[facing=south]": "minecraft:anvil[damage=very_damaged,minecraft:cardinal_direction=south]", + "minecraft:damaged_anvil[facing=west]": "minecraft:anvil[damage=very_damaged,minecraft:cardinal_direction=west]", + "minecraft:damaged_anvil[facing=east]": "minecraft:anvil[damage=very_damaged,minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=north,type=single,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=single,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=left,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=left,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=right,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=north,type=right,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=north]", + "minecraft:trapped_chest[facing=south,type=single,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=single,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=left,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=left,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=right,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=south,type=right,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=south]", + "minecraft:trapped_chest[facing=west,type=single,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=single,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=left,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=left,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=right,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=west,type=right,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=west]", + "minecraft:trapped_chest[facing=east,type=single,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=single,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=left,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=left,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=right,waterlogged=true]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:trapped_chest[facing=east,type=right,waterlogged=false]": "minecraft:trapped_chest[minecraft:cardinal_direction=east]", + "minecraft:light_weighted_pressure_plate[power=0]": "minecraft:light_weighted_pressure_plate[redstone_signal=0]", + "minecraft:light_weighted_pressure_plate[power=1]": "minecraft:light_weighted_pressure_plate[redstone_signal=1]", + "minecraft:light_weighted_pressure_plate[power=2]": "minecraft:light_weighted_pressure_plate[redstone_signal=2]", + "minecraft:light_weighted_pressure_plate[power=3]": "minecraft:light_weighted_pressure_plate[redstone_signal=3]", + "minecraft:light_weighted_pressure_plate[power=4]": "minecraft:light_weighted_pressure_plate[redstone_signal=4]", + "minecraft:light_weighted_pressure_plate[power=5]": "minecraft:light_weighted_pressure_plate[redstone_signal=5]", + "minecraft:light_weighted_pressure_plate[power=6]": "minecraft:light_weighted_pressure_plate[redstone_signal=6]", + "minecraft:light_weighted_pressure_plate[power=7]": "minecraft:light_weighted_pressure_plate[redstone_signal=7]", + "minecraft:light_weighted_pressure_plate[power=8]": "minecraft:light_weighted_pressure_plate[redstone_signal=8]", + "minecraft:light_weighted_pressure_plate[power=9]": "minecraft:light_weighted_pressure_plate[redstone_signal=9]", + "minecraft:light_weighted_pressure_plate[power=10]": "minecraft:light_weighted_pressure_plate[redstone_signal=10]", + "minecraft:light_weighted_pressure_plate[power=11]": "minecraft:light_weighted_pressure_plate[redstone_signal=11]", + "minecraft:light_weighted_pressure_plate[power=12]": "minecraft:light_weighted_pressure_plate[redstone_signal=12]", + "minecraft:light_weighted_pressure_plate[power=13]": "minecraft:light_weighted_pressure_plate[redstone_signal=13]", + "minecraft:light_weighted_pressure_plate[power=14]": "minecraft:light_weighted_pressure_plate[redstone_signal=14]", + "minecraft:light_weighted_pressure_plate[power=15]": "minecraft:light_weighted_pressure_plate[redstone_signal=15]", + "minecraft:heavy_weighted_pressure_plate[power=0]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=0]", + "minecraft:heavy_weighted_pressure_plate[power=1]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=1]", + "minecraft:heavy_weighted_pressure_plate[power=2]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=2]", + "minecraft:heavy_weighted_pressure_plate[power=3]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=3]", + "minecraft:heavy_weighted_pressure_plate[power=4]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=4]", + "minecraft:heavy_weighted_pressure_plate[power=5]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=5]", + "minecraft:heavy_weighted_pressure_plate[power=6]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=6]", + "minecraft:heavy_weighted_pressure_plate[power=7]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=7]", + "minecraft:heavy_weighted_pressure_plate[power=8]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=8]", + "minecraft:heavy_weighted_pressure_plate[power=9]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=9]", + "minecraft:heavy_weighted_pressure_plate[power=10]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=10]", + "minecraft:heavy_weighted_pressure_plate[power=11]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=11]", + "minecraft:heavy_weighted_pressure_plate[power=12]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=12]", + "minecraft:heavy_weighted_pressure_plate[power=13]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=13]", + "minecraft:heavy_weighted_pressure_plate[power=14]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=14]", + "minecraft:heavy_weighted_pressure_plate[power=15]": "minecraft:heavy_weighted_pressure_plate[redstone_signal=15]", + "minecraft:comparator[facing=north,mode=compare,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=north,output_lit_bit=true,output_subtract_bit=false]", + "minecraft:comparator[facing=north,mode=compare,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=north,output_lit_bit=false,output_subtract_bit=false]", + "minecraft:comparator[facing=north,mode=subtract,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=north,output_lit_bit=true,output_subtract_bit=true]", + "minecraft:comparator[facing=north,mode=subtract,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=north,output_lit_bit=false,output_subtract_bit=true]", + "minecraft:comparator[facing=south,mode=compare,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=south,output_lit_bit=true,output_subtract_bit=false]", + "minecraft:comparator[facing=south,mode=compare,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=south,output_lit_bit=false,output_subtract_bit=false]", + "minecraft:comparator[facing=south,mode=subtract,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=south,output_lit_bit=true,output_subtract_bit=true]", + "minecraft:comparator[facing=south,mode=subtract,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=south,output_lit_bit=false,output_subtract_bit=true]", + "minecraft:comparator[facing=west,mode=compare,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=west,output_lit_bit=true,output_subtract_bit=false]", + "minecraft:comparator[facing=west,mode=compare,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=west,output_lit_bit=false,output_subtract_bit=false]", + "minecraft:comparator[facing=west,mode=subtract,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=west,output_lit_bit=true,output_subtract_bit=true]", + "minecraft:comparator[facing=west,mode=subtract,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=west,output_lit_bit=false,output_subtract_bit=true]", + "minecraft:comparator[facing=east,mode=compare,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=east,output_lit_bit=true,output_subtract_bit=false]", + "minecraft:comparator[facing=east,mode=compare,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=east,output_lit_bit=false,output_subtract_bit=false]", + "minecraft:comparator[facing=east,mode=subtract,powered=true]": "minecraft:powered_comparator[minecraft:cardinal_direction=east,output_lit_bit=true,output_subtract_bit=true]", + "minecraft:comparator[facing=east,mode=subtract,powered=false]": "minecraft:unpowered_comparator[minecraft:cardinal_direction=east,output_lit_bit=false,output_subtract_bit=true]", + "minecraft:daylight_detector[inverted=true,power=0]": "minecraft:daylight_detector_inverted[redstone_signal=0]", + "minecraft:daylight_detector[inverted=true,power=1]": "minecraft:daylight_detector_inverted[redstone_signal=1]", + "minecraft:daylight_detector[inverted=true,power=2]": "minecraft:daylight_detector_inverted[redstone_signal=2]", + "minecraft:daylight_detector[inverted=true,power=3]": "minecraft:daylight_detector_inverted[redstone_signal=3]", + "minecraft:daylight_detector[inverted=true,power=4]": "minecraft:daylight_detector_inverted[redstone_signal=4]", + "minecraft:daylight_detector[inverted=true,power=5]": "minecraft:daylight_detector_inverted[redstone_signal=5]", + "minecraft:daylight_detector[inverted=true,power=6]": "minecraft:daylight_detector_inverted[redstone_signal=6]", + "minecraft:daylight_detector[inverted=true,power=7]": "minecraft:daylight_detector_inverted[redstone_signal=7]", + "minecraft:daylight_detector[inverted=true,power=8]": "minecraft:daylight_detector_inverted[redstone_signal=8]", + "minecraft:daylight_detector[inverted=true,power=9]": "minecraft:daylight_detector_inverted[redstone_signal=9]", + "minecraft:daylight_detector[inverted=true,power=10]": "minecraft:daylight_detector_inverted[redstone_signal=10]", + "minecraft:daylight_detector[inverted=true,power=11]": "minecraft:daylight_detector_inverted[redstone_signal=11]", + "minecraft:daylight_detector[inverted=true,power=12]": "minecraft:daylight_detector_inverted[redstone_signal=12]", + "minecraft:daylight_detector[inverted=true,power=13]": "minecraft:daylight_detector_inverted[redstone_signal=13]", + "minecraft:daylight_detector[inverted=true,power=14]": "minecraft:daylight_detector_inverted[redstone_signal=14]", + "minecraft:daylight_detector[inverted=true,power=15]": "minecraft:daylight_detector_inverted[redstone_signal=15]", + "minecraft:daylight_detector[inverted=false,power=0]": "minecraft:daylight_detector[redstone_signal=0]", + "minecraft:daylight_detector[inverted=false,power=1]": "minecraft:daylight_detector[redstone_signal=1]", + "minecraft:daylight_detector[inverted=false,power=2]": "minecraft:daylight_detector[redstone_signal=2]", + "minecraft:daylight_detector[inverted=false,power=3]": "minecraft:daylight_detector[redstone_signal=3]", + "minecraft:daylight_detector[inverted=false,power=4]": "minecraft:daylight_detector[redstone_signal=4]", + "minecraft:daylight_detector[inverted=false,power=5]": "minecraft:daylight_detector[redstone_signal=5]", + "minecraft:daylight_detector[inverted=false,power=6]": "minecraft:daylight_detector[redstone_signal=6]", + "minecraft:daylight_detector[inverted=false,power=7]": "minecraft:daylight_detector[redstone_signal=7]", + "minecraft:daylight_detector[inverted=false,power=8]": "minecraft:daylight_detector[redstone_signal=8]", + "minecraft:daylight_detector[inverted=false,power=9]": "minecraft:daylight_detector[redstone_signal=9]", + "minecraft:daylight_detector[inverted=false,power=10]": "minecraft:daylight_detector[redstone_signal=10]", + "minecraft:daylight_detector[inverted=false,power=11]": "minecraft:daylight_detector[redstone_signal=11]", + "minecraft:daylight_detector[inverted=false,power=12]": "minecraft:daylight_detector[redstone_signal=12]", + "minecraft:daylight_detector[inverted=false,power=13]": "minecraft:daylight_detector[redstone_signal=13]", + "minecraft:daylight_detector[inverted=false,power=14]": "minecraft:daylight_detector[redstone_signal=14]", + "minecraft:daylight_detector[inverted=false,power=15]": "minecraft:daylight_detector[redstone_signal=15]", + "minecraft:redstone_block[]": "minecraft:redstone_block[]", + "minecraft:nether_quartz_ore[]": "minecraft:quartz_ore[]", + "minecraft:hopper[enabled=true,facing=down]": "minecraft:hopper[facing_direction=0,toggle_bit=true]", + "minecraft:hopper[enabled=true,facing=north]": "minecraft:hopper[facing_direction=2,toggle_bit=true]", + "minecraft:hopper[enabled=true,facing=south]": "minecraft:hopper[facing_direction=3,toggle_bit=true]", + "minecraft:hopper[enabled=true,facing=west]": "minecraft:hopper[facing_direction=4,toggle_bit=true]", + "minecraft:hopper[enabled=true,facing=east]": "minecraft:hopper[facing_direction=5,toggle_bit=true]", + "minecraft:hopper[enabled=false,facing=down]": "minecraft:hopper[facing_direction=0,toggle_bit=false]", + "minecraft:hopper[enabled=false,facing=north]": "minecraft:hopper[facing_direction=2,toggle_bit=false]", + "minecraft:hopper[enabled=false,facing=south]": "minecraft:hopper[facing_direction=3,toggle_bit=false]", + "minecraft:hopper[enabled=false,facing=west]": "minecraft:hopper[facing_direction=4,toggle_bit=false]", + "minecraft:hopper[enabled=false,facing=east]": "minecraft:hopper[facing_direction=5,toggle_bit=false]", + "minecraft:quartz_block[]": "minecraft:quartz_block[chisel_type=default,pillar_axis=y]", + "minecraft:chiseled_quartz_block[]": "minecraft:quartz_block[chisel_type=chiseled,pillar_axis=y]", + "minecraft:quartz_pillar[axis=x]": "minecraft:quartz_block[chisel_type=lines,pillar_axis=x]", + "minecraft:quartz_pillar[axis=y]": "minecraft:quartz_block[chisel_type=lines,pillar_axis=y]", + "minecraft:quartz_pillar[axis=z]": "minecraft:quartz_block[chisel_type=lines,pillar_axis=z]", + "minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:activator_rail[powered=true,shape=north_south,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:activator_rail[powered=true,shape=north_south,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=0]", + "minecraft:activator_rail[powered=true,shape=east_west,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:activator_rail[powered=true,shape=east_west,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=1]", + "minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=2]", + "minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=3]", + "minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=4]", + "minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=true,rail_direction=5]", + "minecraft:activator_rail[powered=false,shape=north_south,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:activator_rail[powered=false,shape=north_south,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=0]", + "minecraft:activator_rail[powered=false,shape=east_west,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:activator_rail[powered=false,shape=east_west,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=1]", + "minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=2]", + "minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=3]", + "minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=4]", + "minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=true]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=false]": "minecraft:activator_rail[rail_data_bit=false,rail_direction=5]", + "minecraft:dropper[facing=north,triggered=true]": "minecraft:dropper[facing_direction=2,triggered_bit=true]", + "minecraft:dropper[facing=north,triggered=false]": "minecraft:dropper[facing_direction=2,triggered_bit=false]", + "minecraft:dropper[facing=east,triggered=true]": "minecraft:dropper[facing_direction=5,triggered_bit=true]", + "minecraft:dropper[facing=east,triggered=false]": "minecraft:dropper[facing_direction=5,triggered_bit=false]", + "minecraft:dropper[facing=south,triggered=true]": "minecraft:dropper[facing_direction=3,triggered_bit=true]", + "minecraft:dropper[facing=south,triggered=false]": "minecraft:dropper[facing_direction=3,triggered_bit=false]", + "minecraft:dropper[facing=west,triggered=true]": "minecraft:dropper[facing_direction=4,triggered_bit=true]", + "minecraft:dropper[facing=west,triggered=false]": "minecraft:dropper[facing_direction=4,triggered_bit=false]", + "minecraft:dropper[facing=up,triggered=true]": "minecraft:dropper[facing_direction=1,triggered_bit=true]", + "minecraft:dropper[facing=up,triggered=false]": "minecraft:dropper[facing_direction=1,triggered_bit=false]", + "minecraft:dropper[facing=down,triggered=true]": "minecraft:dropper[facing_direction=0,triggered_bit=true]", + "minecraft:dropper[facing=down,triggered=false]": "minecraft:dropper[facing_direction=0,triggered_bit=false]", + "minecraft:white_terracotta[]": "minecraft:white_terracotta[]", + "minecraft:orange_terracotta[]": "minecraft:orange_terracotta[]", + "minecraft:magenta_terracotta[]": "minecraft:magenta_terracotta[]", + "minecraft:light_blue_terracotta[]": "minecraft:light_blue_terracotta[]", + "minecraft:yellow_terracotta[]": "minecraft:yellow_terracotta[]", + "minecraft:lime_terracotta[]": "minecraft:lime_terracotta[]", + "minecraft:pink_terracotta[]": "minecraft:pink_terracotta[]", + "minecraft:gray_terracotta[]": "minecraft:gray_terracotta[]", + "minecraft:light_gray_terracotta[]": "minecraft:light_gray_terracotta[]", + "minecraft:cyan_terracotta[]": "minecraft:cyan_terracotta[]", + "minecraft:purple_terracotta[]": "minecraft:purple_terracotta[]", + "minecraft:blue_terracotta[]": "minecraft:blue_terracotta[]", + "minecraft:brown_terracotta[]": "minecraft:brown_terracotta[]", + "minecraft:green_terracotta[]": "minecraft:green_terracotta[]", + "minecraft:red_terracotta[]": "minecraft:red_terracotta[]", + "minecraft:black_terracotta[]": "minecraft:black_terracotta[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:white_stained_glass_pane[]", + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:white_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:orange_stained_glass_pane[]", + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:orange_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:magenta_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:light_blue_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:yellow_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:lime_stained_glass_pane[]", + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:lime_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:pink_stained_glass_pane[]", + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:pink_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:gray_stained_glass_pane[]", + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:light_gray_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:cyan_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:purple_stained_glass_pane[]", + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:purple_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:blue_stained_glass_pane[]", + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:blue_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:brown_stained_glass_pane[]", + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:brown_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:green_stained_glass_pane[]", + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:green_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:red_stained_glass_pane[]", + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:red_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:black_stained_glass_pane[]", + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:black_stained_glass_pane[]", + "minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:acacia_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cherry_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cherry_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cherry_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cherry_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_oak_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mangrove_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mangrove_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:bamboo_mosaic_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:slime_block[]": "minecraft:slime[]", + "minecraft:barrier[waterlogged=true]": "minecraft:barrier[]", + "minecraft:barrier[waterlogged=false]": "minecraft:barrier[]", + "minecraft:light[level=0,waterlogged=true]": "minecraft:light_block[block_light_level=0]", + "minecraft:light[level=0,waterlogged=false]": "minecraft:light_block[block_light_level=0]", + "minecraft:light[level=1,waterlogged=true]": "minecraft:light_block[block_light_level=1]", + "minecraft:light[level=1,waterlogged=false]": "minecraft:light_block[block_light_level=1]", + "minecraft:light[level=2,waterlogged=true]": "minecraft:light_block[block_light_level=2]", + "minecraft:light[level=2,waterlogged=false]": "minecraft:light_block[block_light_level=2]", + "minecraft:light[level=3,waterlogged=true]": "minecraft:light_block[block_light_level=3]", + "minecraft:light[level=3,waterlogged=false]": "minecraft:light_block[block_light_level=3]", + "minecraft:light[level=4,waterlogged=true]": "minecraft:light_block[block_light_level=4]", + "minecraft:light[level=4,waterlogged=false]": "minecraft:light_block[block_light_level=4]", + "minecraft:light[level=5,waterlogged=true]": "minecraft:light_block[block_light_level=5]", + "minecraft:light[level=5,waterlogged=false]": "minecraft:light_block[block_light_level=5]", + "minecraft:light[level=6,waterlogged=true]": "minecraft:light_block[block_light_level=6]", + "minecraft:light[level=6,waterlogged=false]": "minecraft:light_block[block_light_level=6]", + "minecraft:light[level=7,waterlogged=true]": "minecraft:light_block[block_light_level=7]", + "minecraft:light[level=7,waterlogged=false]": "minecraft:light_block[block_light_level=7]", + "minecraft:light[level=8,waterlogged=true]": "minecraft:light_block[block_light_level=8]", + "minecraft:light[level=8,waterlogged=false]": "minecraft:light_block[block_light_level=8]", + "minecraft:light[level=9,waterlogged=true]": "minecraft:light_block[block_light_level=9]", + "minecraft:light[level=9,waterlogged=false]": "minecraft:light_block[block_light_level=9]", + "minecraft:light[level=10,waterlogged=true]": "minecraft:light_block[block_light_level=10]", + "minecraft:light[level=10,waterlogged=false]": "minecraft:light_block[block_light_level=10]", + "minecraft:light[level=11,waterlogged=true]": "minecraft:light_block[block_light_level=11]", + "minecraft:light[level=11,waterlogged=false]": "minecraft:light_block[block_light_level=11]", + "minecraft:light[level=12,waterlogged=true]": "minecraft:light_block[block_light_level=12]", + "minecraft:light[level=12,waterlogged=false]": "minecraft:light_block[block_light_level=12]", + "minecraft:light[level=13,waterlogged=true]": "minecraft:light_block[block_light_level=13]", + "minecraft:light[level=13,waterlogged=false]": "minecraft:light_block[block_light_level=13]", + "minecraft:light[level=14,waterlogged=true]": "minecraft:light_block[block_light_level=14]", + "minecraft:light[level=14,waterlogged=false]": "minecraft:light_block[block_light_level=14]", + "minecraft:light[level=15,waterlogged=true]": "minecraft:light_block[block_light_level=15]", + "minecraft:light[level=15,waterlogged=false]": "minecraft:light_block[block_light_level=15]", + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:iron_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:prismarine[]": "minecraft:prismarine[prismarine_block_type=default]", + "minecraft:prismarine_bricks[]": "minecraft:prismarine[prismarine_block_type=bricks]", + "minecraft:dark_prismarine[]": "minecraft:prismarine[prismarine_block_type=dark]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:prismarine_bricks_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:dark_prismarine_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:prismarine_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=prismarine_rough]", + "minecraft:prismarine_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=prismarine_rough]", + "minecraft:prismarine_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_rough]", + "minecraft:prismarine_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_rough]", + "minecraft:prismarine_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_rough]", + "minecraft:prismarine_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_rough]", + "minecraft:prismarine_brick_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=prismarine_brick]", + "minecraft:prismarine_brick_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=prismarine_brick]", + "minecraft:prismarine_brick_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_brick]", + "minecraft:prismarine_brick_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_brick]", + "minecraft:prismarine_brick_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_brick]", + "minecraft:prismarine_brick_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_brick]", + "minecraft:dark_prismarine_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=prismarine_dark]", + "minecraft:dark_prismarine_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=prismarine_dark]", + "minecraft:dark_prismarine_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_dark]", + "minecraft:dark_prismarine_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_dark]", + "minecraft:dark_prismarine_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_dark]", + "minecraft:dark_prismarine_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=prismarine_dark]", + "minecraft:sea_lantern[]": "minecraft:sea_lantern[]", + "minecraft:hay_block[axis=x]": "minecraft:hay_block[deprecated=0,pillar_axis=x]", + "minecraft:hay_block[axis=y]": "minecraft:hay_block[deprecated=0,pillar_axis=y]", + "minecraft:hay_block[axis=z]": "minecraft:hay_block[deprecated=0,pillar_axis=z]", + "minecraft:white_carpet[]": "minecraft:white_carpet[]", + "minecraft:orange_carpet[]": "minecraft:orange_carpet[]", + "minecraft:magenta_carpet[]": "minecraft:magenta_carpet[]", + "minecraft:light_blue_carpet[]": "minecraft:light_blue_carpet[]", + "minecraft:yellow_carpet[]": "minecraft:yellow_carpet[]", + "minecraft:lime_carpet[]": "minecraft:lime_carpet[]", + "minecraft:pink_carpet[]": "minecraft:pink_carpet[]", + "minecraft:gray_carpet[]": "minecraft:gray_carpet[]", + "minecraft:light_gray_carpet[]": "minecraft:light_gray_carpet[]", + "minecraft:cyan_carpet[]": "minecraft:cyan_carpet[]", + "minecraft:purple_carpet[]": "minecraft:purple_carpet[]", + "minecraft:blue_carpet[]": "minecraft:blue_carpet[]", + "minecraft:brown_carpet[]": "minecraft:brown_carpet[]", + "minecraft:green_carpet[]": "minecraft:green_carpet[]", + "minecraft:red_carpet[]": "minecraft:red_carpet[]", + "minecraft:black_carpet[]": "minecraft:black_carpet[]", + "minecraft:terracotta[]": "minecraft:hardened_clay[]", + "minecraft:coal_block[]": "minecraft:coal_block[]", + "minecraft:packed_ice[]": "minecraft:packed_ice[]", + "minecraft:sunflower[half=upper]": "minecraft:sunflower[upper_block_bit=true]", + "minecraft:sunflower[half=lower]": "minecraft:sunflower[upper_block_bit=false]", + "minecraft:lilac[half=upper]": "minecraft:lilac[upper_block_bit=true]", + "minecraft:lilac[half=lower]": "minecraft:lilac[upper_block_bit=false]", + "minecraft:rose_bush[half=upper]": "minecraft:rose_bush[upper_block_bit=true]", + "minecraft:rose_bush[half=lower]": "minecraft:rose_bush[upper_block_bit=false]", + "minecraft:peony[half=upper]": "minecraft:peony[upper_block_bit=true]", + "minecraft:peony[half=lower]": "minecraft:peony[upper_block_bit=false]", + "minecraft:tall_grass[half=upper]": "minecraft:tall_grass[upper_block_bit=true]", + "minecraft:tall_grass[half=lower]": "minecraft:tall_grass[upper_block_bit=false]", + "minecraft:large_fern[half=upper]": "minecraft:large_fern[upper_block_bit=true]", + "minecraft:large_fern[half=lower]": "minecraft:large_fern[upper_block_bit=false]", + "minecraft:white_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:white_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:white_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:white_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:white_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:white_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:white_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:white_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:white_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:white_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:white_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:white_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:white_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:white_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:white_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:white_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:orange_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:orange_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:orange_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:orange_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:orange_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:orange_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:orange_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:orange_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:orange_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:orange_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:orange_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:orange_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:orange_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:orange_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:orange_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:orange_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:magenta_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:magenta_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:magenta_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:magenta_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:magenta_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:magenta_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:magenta_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:magenta_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:magenta_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:magenta_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:magenta_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:magenta_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:magenta_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:magenta_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:magenta_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:magenta_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:light_blue_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:light_blue_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:light_blue_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:light_blue_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:light_blue_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:light_blue_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:light_blue_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:light_blue_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:light_blue_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:light_blue_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:light_blue_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:light_blue_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:light_blue_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:light_blue_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:light_blue_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:light_blue_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:yellow_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:yellow_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:yellow_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:yellow_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:yellow_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:yellow_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:yellow_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:yellow_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:yellow_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:yellow_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:yellow_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:yellow_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:yellow_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:yellow_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:yellow_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:yellow_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:lime_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:lime_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:lime_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:lime_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:lime_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:lime_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:lime_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:lime_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:lime_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:lime_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:lime_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:lime_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:lime_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:lime_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:lime_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:lime_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:pink_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:pink_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:pink_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:pink_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:pink_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:pink_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:pink_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:pink_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:pink_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:pink_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:pink_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:pink_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:pink_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:pink_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:pink_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:pink_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:gray_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:gray_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:gray_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:gray_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:gray_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:gray_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:gray_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:gray_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:gray_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:gray_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:gray_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:gray_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:gray_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:gray_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:gray_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:gray_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:light_gray_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:light_gray_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:light_gray_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:light_gray_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:light_gray_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:light_gray_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:light_gray_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:light_gray_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:light_gray_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:light_gray_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:light_gray_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:light_gray_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:light_gray_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:light_gray_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:light_gray_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:light_gray_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:cyan_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:cyan_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:cyan_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:cyan_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:cyan_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:cyan_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:cyan_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:cyan_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:cyan_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:cyan_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:cyan_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:cyan_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:cyan_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:cyan_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:cyan_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:cyan_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:purple_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:purple_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:purple_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:purple_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:purple_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:purple_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:purple_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:purple_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:purple_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:purple_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:purple_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:purple_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:purple_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:purple_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:purple_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:purple_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:blue_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:blue_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:blue_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:blue_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:blue_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:blue_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:blue_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:blue_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:blue_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:blue_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:blue_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:blue_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:blue_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:blue_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:blue_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:blue_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:brown_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:brown_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:brown_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:brown_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:brown_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:brown_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:brown_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:brown_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:brown_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:brown_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:brown_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:brown_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:brown_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:brown_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:brown_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:brown_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:green_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:green_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:green_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:green_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:green_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:green_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:green_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:green_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:green_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:green_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:green_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:green_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:green_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:green_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:green_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:green_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:red_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:red_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:red_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:red_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:red_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:red_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:red_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:red_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:red_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:red_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:red_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:red_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:red_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:red_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:red_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:red_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:black_banner[rotation=0]": "minecraft:standing_banner[ground_sign_direction=0]", + "minecraft:black_banner[rotation=1]": "minecraft:standing_banner[ground_sign_direction=1]", + "minecraft:black_banner[rotation=2]": "minecraft:standing_banner[ground_sign_direction=2]", + "minecraft:black_banner[rotation=3]": "minecraft:standing_banner[ground_sign_direction=3]", + "minecraft:black_banner[rotation=4]": "minecraft:standing_banner[ground_sign_direction=4]", + "minecraft:black_banner[rotation=5]": "minecraft:standing_banner[ground_sign_direction=5]", + "minecraft:black_banner[rotation=6]": "minecraft:standing_banner[ground_sign_direction=6]", + "minecraft:black_banner[rotation=7]": "minecraft:standing_banner[ground_sign_direction=7]", + "minecraft:black_banner[rotation=8]": "minecraft:standing_banner[ground_sign_direction=8]", + "minecraft:black_banner[rotation=9]": "minecraft:standing_banner[ground_sign_direction=9]", + "minecraft:black_banner[rotation=10]": "minecraft:standing_banner[ground_sign_direction=10]", + "minecraft:black_banner[rotation=11]": "minecraft:standing_banner[ground_sign_direction=11]", + "minecraft:black_banner[rotation=12]": "minecraft:standing_banner[ground_sign_direction=12]", + "minecraft:black_banner[rotation=13]": "minecraft:standing_banner[ground_sign_direction=13]", + "minecraft:black_banner[rotation=14]": "minecraft:standing_banner[ground_sign_direction=14]", + "minecraft:black_banner[rotation=15]": "minecraft:standing_banner[ground_sign_direction=15]", + "minecraft:white_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:white_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:white_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:white_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:orange_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:orange_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:orange_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:orange_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:magenta_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:magenta_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:magenta_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:magenta_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:light_blue_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:light_blue_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:light_blue_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:light_blue_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:yellow_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:yellow_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:yellow_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:yellow_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:lime_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:lime_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:lime_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:lime_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:pink_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:pink_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:pink_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:pink_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:gray_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:gray_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:gray_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:gray_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:light_gray_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:light_gray_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:light_gray_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:light_gray_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:cyan_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:cyan_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:cyan_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:cyan_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:purple_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:purple_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:purple_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:purple_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:blue_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:blue_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:blue_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:blue_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:brown_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:brown_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:brown_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:brown_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:green_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:green_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:green_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:green_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:red_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:red_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:red_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:red_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:black_wall_banner[facing=north]": "minecraft:wall_banner[facing_direction=2]", + "minecraft:black_wall_banner[facing=south]": "minecraft:wall_banner[facing_direction=3]", + "minecraft:black_wall_banner[facing=west]": "minecraft:wall_banner[facing_direction=4]", + "minecraft:black_wall_banner[facing=east]": "minecraft:wall_banner[facing_direction=5]", + "minecraft:red_sandstone[]": "minecraft:red_sandstone[sand_stone_type=default]", + "minecraft:chiseled_red_sandstone[]": "minecraft:red_sandstone[sand_stone_type=heiroglyphs]", + "minecraft:cut_red_sandstone[]": "minecraft:red_sandstone[sand_stone_type=cut]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oak_slab[type=top,waterlogged=true]": "minecraft:oak_slab[minecraft:vertical_half=top]", + "minecraft:oak_slab[type=top,waterlogged=false]": "minecraft:oak_slab[minecraft:vertical_half=top]", + "minecraft:oak_slab[type=bottom,waterlogged=true]": "minecraft:oak_slab[minecraft:vertical_half=bottom]", + "minecraft:oak_slab[type=bottom,waterlogged=false]": "minecraft:oak_slab[minecraft:vertical_half=bottom]", + "minecraft:oak_slab[type=double,waterlogged=true]": "minecraft:oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:oak_slab[type=double,waterlogged=false]": "minecraft:oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:spruce_slab[type=top,waterlogged=true]": "minecraft:spruce_slab[minecraft:vertical_half=top]", + "minecraft:spruce_slab[type=top,waterlogged=false]": "minecraft:spruce_slab[minecraft:vertical_half=top]", + "minecraft:spruce_slab[type=bottom,waterlogged=true]": "minecraft:spruce_slab[minecraft:vertical_half=bottom]", + "minecraft:spruce_slab[type=bottom,waterlogged=false]": "minecraft:spruce_slab[minecraft:vertical_half=bottom]", + "minecraft:spruce_slab[type=double,waterlogged=true]": "minecraft:spruce_double_slab[minecraft:vertical_half=bottom]", + "minecraft:spruce_slab[type=double,waterlogged=false]": "minecraft:spruce_double_slab[minecraft:vertical_half=bottom]", + "minecraft:birch_slab[type=top,waterlogged=true]": "minecraft:birch_slab[minecraft:vertical_half=top]", + "minecraft:birch_slab[type=top,waterlogged=false]": "minecraft:birch_slab[minecraft:vertical_half=top]", + "minecraft:birch_slab[type=bottom,waterlogged=true]": "minecraft:birch_slab[minecraft:vertical_half=bottom]", + "minecraft:birch_slab[type=bottom,waterlogged=false]": "minecraft:birch_slab[minecraft:vertical_half=bottom]", + "minecraft:birch_slab[type=double,waterlogged=true]": "minecraft:birch_double_slab[minecraft:vertical_half=bottom]", + "minecraft:birch_slab[type=double,waterlogged=false]": "minecraft:birch_double_slab[minecraft:vertical_half=bottom]", + "minecraft:jungle_slab[type=top,waterlogged=true]": "minecraft:jungle_slab[minecraft:vertical_half=top]", + "minecraft:jungle_slab[type=top,waterlogged=false]": "minecraft:jungle_slab[minecraft:vertical_half=top]", + "minecraft:jungle_slab[type=bottom,waterlogged=true]": "minecraft:jungle_slab[minecraft:vertical_half=bottom]", + "minecraft:jungle_slab[type=bottom,waterlogged=false]": "minecraft:jungle_slab[minecraft:vertical_half=bottom]", + "minecraft:jungle_slab[type=double,waterlogged=true]": "minecraft:jungle_double_slab[minecraft:vertical_half=bottom]", + "minecraft:jungle_slab[type=double,waterlogged=false]": "minecraft:jungle_double_slab[minecraft:vertical_half=bottom]", + "minecraft:acacia_slab[type=top,waterlogged=true]": "minecraft:acacia_slab[minecraft:vertical_half=top]", + "minecraft:acacia_slab[type=top,waterlogged=false]": "minecraft:acacia_slab[minecraft:vertical_half=top]", + "minecraft:acacia_slab[type=bottom,waterlogged=true]": "minecraft:acacia_slab[minecraft:vertical_half=bottom]", + "minecraft:acacia_slab[type=bottom,waterlogged=false]": "minecraft:acacia_slab[minecraft:vertical_half=bottom]", + "minecraft:acacia_slab[type=double,waterlogged=true]": "minecraft:acacia_double_slab[minecraft:vertical_half=bottom]", + "minecraft:acacia_slab[type=double,waterlogged=false]": "minecraft:acacia_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cherry_slab[type=top,waterlogged=true]": "minecraft:cherry_slab[minecraft:vertical_half=top]", + "minecraft:cherry_slab[type=top,waterlogged=false]": "minecraft:cherry_slab[minecraft:vertical_half=top]", + "minecraft:cherry_slab[type=bottom,waterlogged=true]": "minecraft:cherry_slab[minecraft:vertical_half=bottom]", + "minecraft:cherry_slab[type=bottom,waterlogged=false]": "minecraft:cherry_slab[minecraft:vertical_half=bottom]", + "minecraft:cherry_slab[type=double,waterlogged=true]": "minecraft:cherry_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cherry_slab[type=double,waterlogged=false]": "minecraft:cherry_double_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_oak_slab[type=top,waterlogged=true]": "minecraft:dark_oak_slab[minecraft:vertical_half=top]", + "minecraft:dark_oak_slab[type=top,waterlogged=false]": "minecraft:dark_oak_slab[minecraft:vertical_half=top]", + "minecraft:dark_oak_slab[type=bottom,waterlogged=true]": "minecraft:dark_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_oak_slab[type=bottom,waterlogged=false]": "minecraft:dark_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_oak_slab[type=double,waterlogged=true]": "minecraft:dark_oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:dark_oak_slab[type=double,waterlogged=false]": "minecraft:dark_oak_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mangrove_slab[type=top,waterlogged=true]": "minecraft:mangrove_slab[minecraft:vertical_half=top]", + "minecraft:mangrove_slab[type=top,waterlogged=false]": "minecraft:mangrove_slab[minecraft:vertical_half=top]", + "minecraft:mangrove_slab[type=bottom,waterlogged=true]": "minecraft:mangrove_slab[minecraft:vertical_half=bottom]", + "minecraft:mangrove_slab[type=bottom,waterlogged=false]": "minecraft:mangrove_slab[minecraft:vertical_half=bottom]", + "minecraft:mangrove_slab[type=double,waterlogged=true]": "minecraft:mangrove_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mangrove_slab[type=double,waterlogged=false]": "minecraft:mangrove_double_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_slab[type=top,waterlogged=true]": "minecraft:bamboo_slab[minecraft:vertical_half=top]", + "minecraft:bamboo_slab[type=top,waterlogged=false]": "minecraft:bamboo_slab[minecraft:vertical_half=top]", + "minecraft:bamboo_slab[type=bottom,waterlogged=true]": "minecraft:bamboo_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_slab[type=bottom,waterlogged=false]": "minecraft:bamboo_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_slab[type=double,waterlogged=true]": "minecraft:bamboo_double_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_slab[type=double,waterlogged=false]": "minecraft:bamboo_double_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_mosaic_slab[type=top,waterlogged=true]": "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=top]", + "minecraft:bamboo_mosaic_slab[type=top,waterlogged=false]": "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=top]", + "minecraft:bamboo_mosaic_slab[type=bottom,waterlogged=true]": "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_mosaic_slab[type=bottom,waterlogged=false]": "minecraft:bamboo_mosaic_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_mosaic_slab[type=double,waterlogged=true]": "minecraft:bamboo_mosaic_double_slab[minecraft:vertical_half=bottom]", + "minecraft:bamboo_mosaic_slab[type=double,waterlogged=false]": "minecraft:bamboo_mosaic_double_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=stone]", + "minecraft:stone_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=stone]", + "minecraft:stone_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=stone]", + "minecraft:stone_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=stone]", + "minecraft:stone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=stone]", + "minecraft:stone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=stone]", + "minecraft:smooth_stone_slab[type=top,waterlogged=true]": "minecraft:smooth_stone_slab[minecraft:vertical_half=top]", + "minecraft:smooth_stone_slab[type=top,waterlogged=false]": "minecraft:smooth_stone_slab[minecraft:vertical_half=top]", + "minecraft:smooth_stone_slab[type=bottom,waterlogged=true]": "minecraft:smooth_stone_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_stone_slab[type=bottom,waterlogged=false]": "minecraft:smooth_stone_slab[minecraft:vertical_half=bottom]", + "minecraft:smooth_stone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=smooth_stone]", + "minecraft:smooth_stone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=smooth_stone]", + "minecraft:sandstone_slab[type=top,waterlogged=true]": "minecraft:sandstone_slab[minecraft:vertical_half=top]", + "minecraft:sandstone_slab[type=top,waterlogged=false]": "minecraft:sandstone_slab[minecraft:vertical_half=top]", + "minecraft:sandstone_slab[type=bottom,waterlogged=true]": "minecraft:sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:sandstone_slab[type=bottom,waterlogged=false]": "minecraft:sandstone_slab[minecraft:vertical_half=bottom]", + "minecraft:sandstone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=sandstone]", + "minecraft:sandstone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=sandstone]", + "minecraft:cut_sandstone_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=cut_sandstone]", + "minecraft:cut_sandstone_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=cut_sandstone]", + "minecraft:cut_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_sandstone]", + "minecraft:cut_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_sandstone]", + "minecraft:cut_sandstone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_sandstone]", + "minecraft:cut_sandstone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_sandstone]", + "minecraft:petrified_oak_slab[type=top,waterlogged=true]": "minecraft:petrified_oak_slab[minecraft:vertical_half=top]", + "minecraft:petrified_oak_slab[type=top,waterlogged=false]": "minecraft:petrified_oak_slab[minecraft:vertical_half=top]", + "minecraft:petrified_oak_slab[type=bottom,waterlogged=true]": "minecraft:petrified_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:petrified_oak_slab[type=bottom,waterlogged=false]": "minecraft:petrified_oak_slab[minecraft:vertical_half=bottom]", + "minecraft:petrified_oak_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=wood]", + "minecraft:petrified_oak_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=wood]", + "minecraft:cobblestone_slab[type=top,waterlogged=true]": "minecraft:cobblestone_slab[minecraft:vertical_half=top]", + "minecraft:cobblestone_slab[type=top,waterlogged=false]": "minecraft:cobblestone_slab[minecraft:vertical_half=top]", + "minecraft:cobblestone_slab[type=bottom,waterlogged=true]": "minecraft:cobblestone_slab[minecraft:vertical_half=bottom]", + "minecraft:cobblestone_slab[type=bottom,waterlogged=false]": "minecraft:cobblestone_slab[minecraft:vertical_half=bottom]", + "minecraft:cobblestone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=cobblestone]", + "minecraft:cobblestone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=cobblestone]", + "minecraft:brick_slab[type=top,waterlogged=true]": "minecraft:brick_slab[minecraft:vertical_half=top]", + "minecraft:brick_slab[type=top,waterlogged=false]": "minecraft:brick_slab[minecraft:vertical_half=top]", + "minecraft:brick_slab[type=bottom,waterlogged=true]": "minecraft:brick_slab[minecraft:vertical_half=bottom]", + "minecraft:brick_slab[type=bottom,waterlogged=false]": "minecraft:brick_slab[minecraft:vertical_half=bottom]", + "minecraft:brick_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=brick]", + "minecraft:brick_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=brick]", + "minecraft:stone_brick_slab[type=top,waterlogged=true]": "minecraft:stone_brick_slab[minecraft:vertical_half=top]", + "minecraft:stone_brick_slab[type=top,waterlogged=false]": "minecraft:stone_brick_slab[minecraft:vertical_half=top]", + "minecraft:stone_brick_slab[type=bottom,waterlogged=true]": "minecraft:stone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_brick_slab[type=bottom,waterlogged=false]": "minecraft:stone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:stone_brick_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=stone_brick]", + "minecraft:stone_brick_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=stone_brick]", + "minecraft:mud_brick_slab[type=top,waterlogged=true]": "minecraft:mud_brick_slab[minecraft:vertical_half=top]", + "minecraft:mud_brick_slab[type=top,waterlogged=false]": "minecraft:mud_brick_slab[minecraft:vertical_half=top]", + "minecraft:mud_brick_slab[type=bottom,waterlogged=true]": "minecraft:mud_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:mud_brick_slab[type=bottom,waterlogged=false]": "minecraft:mud_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:mud_brick_slab[type=double,waterlogged=true]": "minecraft:mud_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:mud_brick_slab[type=double,waterlogged=false]": "minecraft:mud_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:nether_brick_slab[type=top,waterlogged=true]": "minecraft:nether_brick_slab[minecraft:vertical_half=top]", + "minecraft:nether_brick_slab[type=top,waterlogged=false]": "minecraft:nether_brick_slab[minecraft:vertical_half=top]", + "minecraft:nether_brick_slab[type=bottom,waterlogged=true]": "minecraft:nether_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:nether_brick_slab[type=bottom,waterlogged=false]": "minecraft:nether_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:nether_brick_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=nether_brick]", + "minecraft:nether_brick_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=nether_brick]", + "minecraft:quartz_slab[type=top,waterlogged=true]": "minecraft:quartz_slab[minecraft:vertical_half=top]", + "minecraft:quartz_slab[type=top,waterlogged=false]": "minecraft:quartz_slab[minecraft:vertical_half=top]", + "minecraft:quartz_slab[type=bottom,waterlogged=true]": "minecraft:quartz_slab[minecraft:vertical_half=bottom]", + "minecraft:quartz_slab[type=bottom,waterlogged=false]": "minecraft:quartz_slab[minecraft:vertical_half=bottom]", + "minecraft:quartz_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=quartz]", + "minecraft:quartz_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab[minecraft:vertical_half=bottom,stone_slab_type=quartz]", + "minecraft:red_sandstone_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=red_sandstone]", + "minecraft:red_sandstone_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=red_sandstone]", + "minecraft:red_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_sandstone]", + "minecraft:red_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_sandstone]", + "minecraft:red_sandstone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_sandstone]", + "minecraft:red_sandstone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_sandstone]", + "minecraft:cut_red_sandstone_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=cut_red_sandstone]", + "minecraft:cut_red_sandstone_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=cut_red_sandstone]", + "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_red_sandstone]", + "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_red_sandstone]", + "minecraft:cut_red_sandstone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_red_sandstone]", + "minecraft:cut_red_sandstone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=cut_red_sandstone]", + "minecraft:purpur_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=purpur]", + "minecraft:purpur_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=purpur]", + "minecraft:purpur_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=purpur]", + "minecraft:purpur_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=purpur]", + "minecraft:purpur_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=purpur]", + "minecraft:purpur_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=purpur]", + "minecraft:smooth_stone[]": "minecraft:smooth_stone[]", + "minecraft:smooth_sandstone[]": "minecraft:sandstone[sand_stone_type=smooth]", + "minecraft:smooth_quartz[]": "minecraft:quartz_block[chisel_type=smooth,pillar_axis=y]", + "minecraft:smooth_red_sandstone[]": "minecraft:red_sandstone[sand_stone_type=smooth]", + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:spruce_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:spruce_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:spruce_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:spruce_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:spruce_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:spruce_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:spruce_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:spruce_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:spruce_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:spruce_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:spruce_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:spruce_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:spruce_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:spruce_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:spruce_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:spruce_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:spruce_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:spruce_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:spruce_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:spruce_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:spruce_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:spruce_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:spruce_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:spruce_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:spruce_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:spruce_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:spruce_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:spruce_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:spruce_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:spruce_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:spruce_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:spruce_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:birch_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:birch_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:birch_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:birch_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:birch_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:birch_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:birch_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:birch_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:birch_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:birch_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:birch_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:birch_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:birch_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:birch_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:birch_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:birch_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:birch_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:birch_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:birch_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:birch_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:birch_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:birch_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:birch_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:birch_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:birch_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:birch_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:birch_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:birch_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:birch_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:birch_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:birch_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:birch_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:jungle_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:jungle_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:jungle_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:jungle_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:jungle_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:jungle_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:jungle_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:jungle_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:jungle_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:jungle_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:jungle_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:jungle_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:jungle_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:jungle_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:jungle_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:jungle_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:jungle_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:jungle_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:jungle_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:jungle_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:jungle_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:jungle_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:jungle_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:jungle_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:jungle_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:jungle_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:jungle_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:jungle_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:jungle_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:jungle_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:jungle_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:jungle_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:acacia_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:acacia_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:acacia_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:acacia_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:acacia_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:acacia_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:acacia_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:acacia_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:acacia_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:acacia_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:acacia_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:acacia_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:acacia_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:acacia_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:acacia_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:acacia_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:acacia_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:acacia_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:acacia_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:acacia_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:acacia_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:acacia_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:acacia_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:acacia_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:acacia_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:acacia_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:acacia_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:acacia_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:acacia_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:acacia_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:acacia_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:acacia_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:cherry_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:cherry_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:cherry_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:cherry_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:cherry_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:cherry_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:cherry_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:cherry_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:cherry_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:cherry_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:cherry_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:cherry_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:cherry_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:cherry_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:cherry_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:cherry_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:cherry_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:cherry_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:cherry_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:cherry_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:cherry_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:cherry_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:cherry_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:cherry_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:cherry_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:cherry_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:cherry_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:cherry_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:cherry_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:cherry_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:cherry_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:cherry_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:dark_oak_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:dark_oak_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:dark_oak_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:dark_oak_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:mangrove_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:mangrove_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:mangrove_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:mangrove_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:mangrove_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:bamboo_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:bamboo_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:bamboo_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:bamboo_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:spruce_fence[]", + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:spruce_fence[]", + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:birch_fence[]", + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:birch_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:jungle_fence[]", + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:jungle_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:acacia_fence[]", + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:acacia_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:cherry_fence[]", + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:cherry_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:dark_oak_fence[]", + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:dark_oak_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:mangrove_fence[]", + "minecraft:mangrove_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:mangrove_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:bamboo_fence[]", + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:bamboo_fence[]", + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:spruce_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:spruce_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:spruce_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:spruce_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:spruce_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:spruce_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:spruce_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:spruce_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:spruce_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:spruce_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:spruce_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:spruce_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:spruce_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:spruce_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:spruce_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:spruce_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:spruce_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:spruce_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:spruce_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:spruce_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:spruce_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:spruce_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:spruce_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:spruce_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:spruce_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:spruce_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:spruce_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:spruce_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:spruce_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:spruce_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:spruce_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:spruce_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:spruce_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:spruce_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:spruce_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:spruce_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:spruce_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:spruce_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:spruce_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:spruce_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:spruce_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:spruce_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:spruce_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:spruce_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:spruce_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:spruce_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:spruce_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:spruce_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:spruce_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:spruce_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:spruce_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:spruce_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:spruce_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:spruce_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:spruce_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:spruce_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:spruce_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:spruce_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:spruce_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:spruce_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:spruce_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:spruce_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:spruce_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:spruce_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:birch_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:birch_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:birch_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:birch_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:birch_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:birch_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:birch_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:birch_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:birch_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:birch_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:birch_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:birch_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:birch_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:birch_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:birch_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:birch_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:birch_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:birch_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:birch_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:birch_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:birch_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:birch_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:birch_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:birch_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:birch_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:birch_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:birch_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:birch_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:birch_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:birch_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:birch_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:birch_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:birch_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:birch_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:birch_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:birch_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:birch_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:birch_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:birch_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:birch_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:birch_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:birch_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:birch_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:birch_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:birch_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:birch_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:birch_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:birch_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:birch_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:birch_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:birch_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:birch_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:birch_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:birch_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:birch_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:birch_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:birch_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:birch_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:birch_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:birch_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:birch_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:birch_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:birch_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:birch_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:jungle_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:jungle_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:jungle_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:jungle_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:jungle_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:jungle_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:jungle_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:jungle_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:jungle_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:jungle_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:jungle_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:jungle_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:jungle_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:jungle_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:jungle_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:jungle_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:jungle_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:jungle_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:jungle_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:jungle_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:jungle_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:jungle_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:jungle_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:jungle_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:jungle_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:jungle_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:jungle_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:jungle_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:jungle_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:jungle_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:jungle_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:jungle_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:jungle_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:jungle_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:jungle_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:jungle_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:jungle_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:jungle_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:jungle_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:jungle_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:jungle_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:jungle_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:jungle_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:jungle_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:jungle_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:jungle_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:jungle_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:jungle_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:jungle_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:jungle_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:jungle_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:jungle_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:jungle_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:jungle_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:jungle_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:jungle_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:jungle_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:jungle_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:jungle_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:jungle_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:jungle_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:jungle_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:jungle_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:jungle_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:acacia_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:acacia_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:acacia_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:acacia_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:acacia_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:acacia_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:acacia_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:acacia_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:acacia_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:acacia_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:acacia_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:acacia_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:acacia_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:acacia_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:acacia_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:acacia_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:acacia_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:acacia_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:acacia_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:acacia_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:acacia_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:acacia_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:acacia_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:acacia_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:acacia_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:acacia_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:acacia_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:acacia_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:acacia_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:acacia_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:acacia_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:acacia_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:acacia_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:acacia_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:acacia_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:acacia_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:acacia_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:acacia_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:acacia_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:acacia_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:acacia_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:acacia_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:acacia_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:acacia_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:acacia_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:acacia_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:acacia_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:acacia_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:acacia_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:acacia_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:acacia_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:acacia_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:acacia_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:acacia_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:acacia_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:acacia_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:acacia_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:acacia_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:acacia_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:acacia_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:acacia_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:acacia_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:acacia_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:acacia_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:cherry_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:cherry_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:cherry_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:cherry_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:cherry_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:cherry_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:cherry_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:cherry_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:cherry_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:cherry_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:cherry_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:cherry_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:cherry_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:cherry_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:cherry_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:cherry_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:cherry_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:cherry_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:cherry_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:cherry_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:cherry_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:cherry_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:cherry_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:cherry_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:cherry_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:cherry_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:cherry_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:cherry_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:cherry_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:cherry_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:cherry_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:cherry_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:cherry_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:cherry_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:cherry_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:cherry_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:cherry_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:cherry_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:cherry_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:cherry_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:cherry_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:cherry_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:cherry_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:cherry_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:cherry_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:cherry_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:cherry_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:cherry_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:cherry_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:cherry_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:cherry_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:cherry_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:cherry_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:cherry_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:cherry_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:cherry_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:cherry_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:cherry_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:cherry_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:cherry_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:cherry_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:cherry_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:cherry_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:cherry_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:cherry_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:dark_oak_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:mangrove_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:mangrove_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:mangrove_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:mangrove_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:mangrove_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:mangrove_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:mangrove_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:mangrove_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:mangrove_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:bamboo_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:bamboo_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:bamboo_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:bamboo_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:bamboo_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:bamboo_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:bamboo_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:bamboo_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:bamboo_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:end_rod[facing=north]": "minecraft:end_rod[facing_direction=3]", + "minecraft:end_rod[facing=east]": "minecraft:end_rod[facing_direction=4]", + "minecraft:end_rod[facing=south]": "minecraft:end_rod[facing_direction=2]", + "minecraft:end_rod[facing=west]": "minecraft:end_rod[facing_direction=5]", + "minecraft:end_rod[facing=up]": "minecraft:end_rod[facing_direction=1]", + "minecraft:end_rod[facing=down]": "minecraft:end_rod[facing_direction=0]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=true]": "minecraft:chorus_plant[]", + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false]": "minecraft:chorus_plant[]", + "minecraft:chorus_flower[age=0]": "minecraft:chorus_flower[age=0]", + "minecraft:chorus_flower[age=1]": "minecraft:chorus_flower[age=1]", + "minecraft:chorus_flower[age=2]": "minecraft:chorus_flower[age=2]", + "minecraft:chorus_flower[age=3]": "minecraft:chorus_flower[age=3]", + "minecraft:chorus_flower[age=4]": "minecraft:chorus_flower[age=4]", + "minecraft:chorus_flower[age=5]": "minecraft:chorus_flower[age=5]", + "minecraft:purpur_block[]": "minecraft:purpur_block[chisel_type=default,pillar_axis=y]", + "minecraft:purpur_pillar[axis=x]": "minecraft:purpur_block[chisel_type=lines,pillar_axis=x]", + "minecraft:purpur_pillar[axis=y]": "minecraft:purpur_block[chisel_type=lines,pillar_axis=y]", + "minecraft:purpur_pillar[axis=z]": "minecraft:purpur_block[chisel_type=lines,pillar_axis=z]", + "minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:purpur_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_bricks[]": "minecraft:end_bricks[]", + "minecraft:torchflower_crop[age=0]": "minecraft:torchflower_crop[growth=0]", + "minecraft:torchflower_crop[age=1]": "minecraft:torchflower_crop[growth=4]", + "minecraft:pitcher_crop[age=0,half=upper]": "minecraft:pitcher_crop[growth=0,upper_block_bit=true]", + "minecraft:pitcher_crop[age=0,half=lower]": "minecraft:pitcher_crop[growth=0,upper_block_bit=false]", + "minecraft:pitcher_crop[age=1,half=upper]": "minecraft:pitcher_crop[growth=1,upper_block_bit=true]", + "minecraft:pitcher_crop[age=1,half=lower]": "minecraft:pitcher_crop[growth=1,upper_block_bit=false]", + "minecraft:pitcher_crop[age=2,half=upper]": "minecraft:pitcher_crop[growth=3,upper_block_bit=true]", + "minecraft:pitcher_crop[age=2,half=lower]": "minecraft:pitcher_crop[growth=3,upper_block_bit=false]", + "minecraft:pitcher_crop[age=3,half=upper]": "minecraft:pitcher_crop[growth=5,upper_block_bit=true]", + "minecraft:pitcher_crop[age=3,half=lower]": "minecraft:pitcher_crop[growth=5,upper_block_bit=false]", + "minecraft:pitcher_crop[age=4,half=upper]": "minecraft:pitcher_crop[growth=7,upper_block_bit=true]", + "minecraft:pitcher_crop[age=4,half=lower]": "minecraft:pitcher_crop[growth=7,upper_block_bit=false]", + "minecraft:pitcher_plant[half=upper]": "minecraft:pitcher_plant[upper_block_bit=true]", + "minecraft:pitcher_plant[half=lower]": "minecraft:pitcher_plant[upper_block_bit=false]", + "minecraft:beetroots[age=0]": "minecraft:beetroot[growth=0]", + "minecraft:beetroots[age=1]": "minecraft:beetroot[growth=3]", + "minecraft:beetroots[age=2]": "minecraft:beetroot[growth=4]", + "minecraft:beetroots[age=3]": "minecraft:beetroot[growth=7]", + "minecraft:dirt_path[]": "minecraft:grass_path[]", + "minecraft:end_gateway[]": "minecraft:end_gateway[]", + "minecraft:repeating_command_block[conditional=true,facing=north]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=2]", + "minecraft:repeating_command_block[conditional=true,facing=east]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=5]", + "minecraft:repeating_command_block[conditional=true,facing=south]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=3]", + "minecraft:repeating_command_block[conditional=true,facing=west]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=4]", + "minecraft:repeating_command_block[conditional=true,facing=up]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=1]", + "minecraft:repeating_command_block[conditional=true,facing=down]": "minecraft:repeating_command_block[conditional_bit=true,facing_direction=0]", + "minecraft:repeating_command_block[conditional=false,facing=north]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=2]", + "minecraft:repeating_command_block[conditional=false,facing=east]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=5]", + "minecraft:repeating_command_block[conditional=false,facing=south]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=3]", + "minecraft:repeating_command_block[conditional=false,facing=west]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=4]", + "minecraft:repeating_command_block[conditional=false,facing=up]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=1]", + "minecraft:repeating_command_block[conditional=false,facing=down]": "minecraft:repeating_command_block[conditional_bit=false,facing_direction=0]", + "minecraft:chain_command_block[conditional=true,facing=north]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=2]", + "minecraft:chain_command_block[conditional=true,facing=east]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=5]", + "minecraft:chain_command_block[conditional=true,facing=south]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=3]", + "minecraft:chain_command_block[conditional=true,facing=west]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=4]", + "minecraft:chain_command_block[conditional=true,facing=up]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=1]", + "minecraft:chain_command_block[conditional=true,facing=down]": "minecraft:chain_command_block[conditional_bit=true,facing_direction=0]", + "minecraft:chain_command_block[conditional=false,facing=north]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=2]", + "minecraft:chain_command_block[conditional=false,facing=east]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=5]", + "minecraft:chain_command_block[conditional=false,facing=south]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=3]", + "minecraft:chain_command_block[conditional=false,facing=west]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=4]", + "minecraft:chain_command_block[conditional=false,facing=up]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=1]", + "minecraft:chain_command_block[conditional=false,facing=down]": "minecraft:chain_command_block[conditional_bit=false,facing_direction=0]", + "minecraft:frosted_ice[age=0]": "minecraft:frosted_ice[age=0]", + "minecraft:frosted_ice[age=1]": "minecraft:frosted_ice[age=1]", + "minecraft:frosted_ice[age=2]": "minecraft:frosted_ice[age=2]", + "minecraft:frosted_ice[age=3]": "minecraft:frosted_ice[age=3]", + "minecraft:magma_block[]": "minecraft:magma[]", + "minecraft:nether_wart_block[]": "minecraft:nether_wart_block[]", + "minecraft:red_nether_bricks[]": "minecraft:red_nether_brick[]", + "minecraft:bone_block[axis=x]": "minecraft:bone_block[deprecated=0,pillar_axis=x]", + "minecraft:bone_block[axis=y]": "minecraft:bone_block[deprecated=0,pillar_axis=y]", + "minecraft:bone_block[axis=z]": "minecraft:bone_block[deprecated=0,pillar_axis=z]", + "minecraft:structure_void[]": "minecraft:structure_void[structure_void_type=air]", + "minecraft:observer[facing=north,powered=true]": "minecraft:observer[minecraft:facing_direction=north,powered_bit=true]", + "minecraft:observer[facing=north,powered=false]": "minecraft:observer[minecraft:facing_direction=north,powered_bit=false]", + "minecraft:observer[facing=east,powered=true]": "minecraft:observer[minecraft:facing_direction=east,powered_bit=true]", + "minecraft:observer[facing=east,powered=false]": "minecraft:observer[minecraft:facing_direction=east,powered_bit=false]", + "minecraft:observer[facing=south,powered=true]": "minecraft:observer[minecraft:facing_direction=south,powered_bit=true]", + "minecraft:observer[facing=south,powered=false]": "minecraft:observer[minecraft:facing_direction=south,powered_bit=false]", + "minecraft:observer[facing=west,powered=true]": "minecraft:observer[minecraft:facing_direction=west,powered_bit=true]", + "minecraft:observer[facing=west,powered=false]": "minecraft:observer[minecraft:facing_direction=west,powered_bit=false]", + "minecraft:observer[facing=up,powered=true]": "minecraft:observer[minecraft:facing_direction=up,powered_bit=true]", + "minecraft:observer[facing=up,powered=false]": "minecraft:observer[minecraft:facing_direction=up,powered_bit=false]", + "minecraft:observer[facing=down,powered=true]": "minecraft:observer[minecraft:facing_direction=down,powered_bit=true]", + "minecraft:observer[facing=down,powered=false]": "minecraft:observer[minecraft:facing_direction=down,powered_bit=false]", + "minecraft:shulker_box[facing=north]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=east]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=south]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=west]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=up]": "minecraft:undyed_shulker_box[]", + "minecraft:shulker_box[facing=down]": "minecraft:undyed_shulker_box[]", + "minecraft:white_shulker_box[facing=north]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=east]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=south]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=west]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=up]": "minecraft:white_shulker_box[]", + "minecraft:white_shulker_box[facing=down]": "minecraft:white_shulker_box[]", + "minecraft:orange_shulker_box[facing=north]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=east]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=south]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=west]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=up]": "minecraft:orange_shulker_box[]", + "minecraft:orange_shulker_box[facing=down]": "minecraft:orange_shulker_box[]", + "minecraft:magenta_shulker_box[facing=north]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=east]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=south]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=west]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=up]": "minecraft:magenta_shulker_box[]", + "minecraft:magenta_shulker_box[facing=down]": "minecraft:magenta_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=north]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=east]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=south]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=west]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=up]": "minecraft:light_blue_shulker_box[]", + "minecraft:light_blue_shulker_box[facing=down]": "minecraft:light_blue_shulker_box[]", + "minecraft:yellow_shulker_box[facing=north]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=east]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=south]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=west]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=up]": "minecraft:yellow_shulker_box[]", + "minecraft:yellow_shulker_box[facing=down]": "minecraft:yellow_shulker_box[]", + "minecraft:lime_shulker_box[facing=north]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=east]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=south]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=west]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=up]": "minecraft:lime_shulker_box[]", + "minecraft:lime_shulker_box[facing=down]": "minecraft:lime_shulker_box[]", + "minecraft:pink_shulker_box[facing=north]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=east]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=south]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=west]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=up]": "minecraft:pink_shulker_box[]", + "minecraft:pink_shulker_box[facing=down]": "minecraft:pink_shulker_box[]", + "minecraft:gray_shulker_box[facing=north]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=east]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=south]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=west]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=up]": "minecraft:gray_shulker_box[]", + "minecraft:gray_shulker_box[facing=down]": "minecraft:gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=north]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=east]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=south]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=west]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=up]": "minecraft:light_gray_shulker_box[]", + "minecraft:light_gray_shulker_box[facing=down]": "minecraft:light_gray_shulker_box[]", + "minecraft:cyan_shulker_box[facing=north]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=east]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=south]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=west]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=up]": "minecraft:cyan_shulker_box[]", + "minecraft:cyan_shulker_box[facing=down]": "minecraft:cyan_shulker_box[]", + "minecraft:purple_shulker_box[facing=north]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=east]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=south]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=west]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=up]": "minecraft:purple_shulker_box[]", + "minecraft:purple_shulker_box[facing=down]": "minecraft:purple_shulker_box[]", + "minecraft:blue_shulker_box[facing=north]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=east]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=south]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=west]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=up]": "minecraft:blue_shulker_box[]", + "minecraft:blue_shulker_box[facing=down]": "minecraft:blue_shulker_box[]", + "minecraft:brown_shulker_box[facing=north]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=east]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=south]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=west]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=up]": "minecraft:brown_shulker_box[]", + "minecraft:brown_shulker_box[facing=down]": "minecraft:brown_shulker_box[]", + "minecraft:green_shulker_box[facing=north]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=east]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=south]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=west]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=up]": "minecraft:green_shulker_box[]", + "minecraft:green_shulker_box[facing=down]": "minecraft:green_shulker_box[]", + "minecraft:red_shulker_box[facing=north]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=east]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=south]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=west]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=up]": "minecraft:red_shulker_box[]", + "minecraft:red_shulker_box[facing=down]": "minecraft:red_shulker_box[]", + "minecraft:black_shulker_box[facing=north]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=east]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=south]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=west]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=up]": "minecraft:black_shulker_box[]", + "minecraft:black_shulker_box[facing=down]": "minecraft:black_shulker_box[]", + "minecraft:white_glazed_terracotta[facing=north]": "minecraft:white_glazed_terracotta[facing_direction=2]", + "minecraft:white_glazed_terracotta[facing=south]": "minecraft:white_glazed_terracotta[facing_direction=3]", + "minecraft:white_glazed_terracotta[facing=west]": "minecraft:white_glazed_terracotta[facing_direction=4]", + "minecraft:white_glazed_terracotta[facing=east]": "minecraft:white_glazed_terracotta[facing_direction=5]", + "minecraft:orange_glazed_terracotta[facing=north]": "minecraft:orange_glazed_terracotta[facing_direction=2]", + "minecraft:orange_glazed_terracotta[facing=south]": "minecraft:orange_glazed_terracotta[facing_direction=3]", + "minecraft:orange_glazed_terracotta[facing=west]": "minecraft:orange_glazed_terracotta[facing_direction=4]", + "minecraft:orange_glazed_terracotta[facing=east]": "minecraft:orange_glazed_terracotta[facing_direction=5]", + "minecraft:magenta_glazed_terracotta[facing=north]": "minecraft:magenta_glazed_terracotta[facing_direction=2]", + "minecraft:magenta_glazed_terracotta[facing=south]": "minecraft:magenta_glazed_terracotta[facing_direction=3]", + "minecraft:magenta_glazed_terracotta[facing=west]": "minecraft:magenta_glazed_terracotta[facing_direction=4]", + "minecraft:magenta_glazed_terracotta[facing=east]": "minecraft:magenta_glazed_terracotta[facing_direction=5]", + "minecraft:light_blue_glazed_terracotta[facing=north]": "minecraft:light_blue_glazed_terracotta[facing_direction=2]", + "minecraft:light_blue_glazed_terracotta[facing=south]": "minecraft:light_blue_glazed_terracotta[facing_direction=3]", + "minecraft:light_blue_glazed_terracotta[facing=west]": "minecraft:light_blue_glazed_terracotta[facing_direction=4]", + "minecraft:light_blue_glazed_terracotta[facing=east]": "minecraft:light_blue_glazed_terracotta[facing_direction=5]", + "minecraft:yellow_glazed_terracotta[facing=north]": "minecraft:yellow_glazed_terracotta[facing_direction=2]", + "minecraft:yellow_glazed_terracotta[facing=south]": "minecraft:yellow_glazed_terracotta[facing_direction=3]", + "minecraft:yellow_glazed_terracotta[facing=west]": "minecraft:yellow_glazed_terracotta[facing_direction=4]", + "minecraft:yellow_glazed_terracotta[facing=east]": "minecraft:yellow_glazed_terracotta[facing_direction=5]", + "minecraft:lime_glazed_terracotta[facing=north]": "minecraft:lime_glazed_terracotta[facing_direction=2]", + "minecraft:lime_glazed_terracotta[facing=south]": "minecraft:lime_glazed_terracotta[facing_direction=3]", + "minecraft:lime_glazed_terracotta[facing=west]": "minecraft:lime_glazed_terracotta[facing_direction=4]", + "minecraft:lime_glazed_terracotta[facing=east]": "minecraft:lime_glazed_terracotta[facing_direction=5]", + "minecraft:pink_glazed_terracotta[facing=north]": "minecraft:pink_glazed_terracotta[facing_direction=2]", + "minecraft:pink_glazed_terracotta[facing=south]": "minecraft:pink_glazed_terracotta[facing_direction=3]", + "minecraft:pink_glazed_terracotta[facing=west]": "minecraft:pink_glazed_terracotta[facing_direction=4]", + "minecraft:pink_glazed_terracotta[facing=east]": "minecraft:pink_glazed_terracotta[facing_direction=5]", + "minecraft:gray_glazed_terracotta[facing=north]": "minecraft:gray_glazed_terracotta[facing_direction=2]", + "minecraft:gray_glazed_terracotta[facing=south]": "minecraft:gray_glazed_terracotta[facing_direction=3]", + "minecraft:gray_glazed_terracotta[facing=west]": "minecraft:gray_glazed_terracotta[facing_direction=4]", + "minecraft:gray_glazed_terracotta[facing=east]": "minecraft:gray_glazed_terracotta[facing_direction=5]", + "minecraft:light_gray_glazed_terracotta[facing=north]": "minecraft:silver_glazed_terracotta[facing_direction=2]", + "minecraft:light_gray_glazed_terracotta[facing=south]": "minecraft:silver_glazed_terracotta[facing_direction=3]", + "minecraft:light_gray_glazed_terracotta[facing=west]": "minecraft:silver_glazed_terracotta[facing_direction=4]", + "minecraft:light_gray_glazed_terracotta[facing=east]": "minecraft:silver_glazed_terracotta[facing_direction=5]", + "minecraft:cyan_glazed_terracotta[facing=north]": "minecraft:cyan_glazed_terracotta[facing_direction=2]", + "minecraft:cyan_glazed_terracotta[facing=south]": "minecraft:cyan_glazed_terracotta[facing_direction=3]", + "minecraft:cyan_glazed_terracotta[facing=west]": "minecraft:cyan_glazed_terracotta[facing_direction=4]", + "minecraft:cyan_glazed_terracotta[facing=east]": "minecraft:cyan_glazed_terracotta[facing_direction=5]", + "minecraft:purple_glazed_terracotta[facing=north]": "minecraft:purple_glazed_terracotta[facing_direction=2]", + "minecraft:purple_glazed_terracotta[facing=south]": "minecraft:purple_glazed_terracotta[facing_direction=3]", + "minecraft:purple_glazed_terracotta[facing=west]": "minecraft:purple_glazed_terracotta[facing_direction=4]", + "minecraft:purple_glazed_terracotta[facing=east]": "minecraft:purple_glazed_terracotta[facing_direction=5]", + "minecraft:blue_glazed_terracotta[facing=north]": "minecraft:blue_glazed_terracotta[facing_direction=2]", + "minecraft:blue_glazed_terracotta[facing=south]": "minecraft:blue_glazed_terracotta[facing_direction=3]", + "minecraft:blue_glazed_terracotta[facing=west]": "minecraft:blue_glazed_terracotta[facing_direction=4]", + "minecraft:blue_glazed_terracotta[facing=east]": "minecraft:blue_glazed_terracotta[facing_direction=5]", + "minecraft:brown_glazed_terracotta[facing=north]": "minecraft:brown_glazed_terracotta[facing_direction=2]", + "minecraft:brown_glazed_terracotta[facing=south]": "minecraft:brown_glazed_terracotta[facing_direction=3]", + "minecraft:brown_glazed_terracotta[facing=west]": "minecraft:brown_glazed_terracotta[facing_direction=4]", + "minecraft:brown_glazed_terracotta[facing=east]": "minecraft:brown_glazed_terracotta[facing_direction=5]", + "minecraft:green_glazed_terracotta[facing=north]": "minecraft:green_glazed_terracotta[facing_direction=2]", + "minecraft:green_glazed_terracotta[facing=south]": "minecraft:green_glazed_terracotta[facing_direction=3]", + "minecraft:green_glazed_terracotta[facing=west]": "minecraft:green_glazed_terracotta[facing_direction=4]", + "minecraft:green_glazed_terracotta[facing=east]": "minecraft:green_glazed_terracotta[facing_direction=5]", + "minecraft:red_glazed_terracotta[facing=north]": "minecraft:red_glazed_terracotta[facing_direction=2]", + "minecraft:red_glazed_terracotta[facing=south]": "minecraft:red_glazed_terracotta[facing_direction=3]", + "minecraft:red_glazed_terracotta[facing=west]": "minecraft:red_glazed_terracotta[facing_direction=4]", + "minecraft:red_glazed_terracotta[facing=east]": "minecraft:red_glazed_terracotta[facing_direction=5]", + "minecraft:black_glazed_terracotta[facing=north]": "minecraft:black_glazed_terracotta[facing_direction=2]", + "minecraft:black_glazed_terracotta[facing=south]": "minecraft:black_glazed_terracotta[facing_direction=3]", + "minecraft:black_glazed_terracotta[facing=west]": "minecraft:black_glazed_terracotta[facing_direction=4]", + "minecraft:black_glazed_terracotta[facing=east]": "minecraft:black_glazed_terracotta[facing_direction=5]", + "minecraft:white_concrete[]": "minecraft:white_concrete[]", + "minecraft:orange_concrete[]": "minecraft:orange_concrete[]", + "minecraft:magenta_concrete[]": "minecraft:magenta_concrete[]", + "minecraft:light_blue_concrete[]": "minecraft:light_blue_concrete[]", + "minecraft:yellow_concrete[]": "minecraft:yellow_concrete[]", + "minecraft:lime_concrete[]": "minecraft:lime_concrete[]", + "minecraft:pink_concrete[]": "minecraft:pink_concrete[]", + "minecraft:gray_concrete[]": "minecraft:gray_concrete[]", + "minecraft:light_gray_concrete[]": "minecraft:light_gray_concrete[]", + "minecraft:cyan_concrete[]": "minecraft:cyan_concrete[]", + "minecraft:purple_concrete[]": "minecraft:purple_concrete[]", + "minecraft:blue_concrete[]": "minecraft:blue_concrete[]", + "minecraft:brown_concrete[]": "minecraft:brown_concrete[]", + "minecraft:green_concrete[]": "minecraft:green_concrete[]", + "minecraft:red_concrete[]": "minecraft:red_concrete[]", + "minecraft:black_concrete[]": "minecraft:black_concrete[]", + "minecraft:white_concrete_powder[]": "minecraft:white_concrete_powder[]", + "minecraft:orange_concrete_powder[]": "minecraft:orange_concrete_powder[]", + "minecraft:magenta_concrete_powder[]": "minecraft:magenta_concrete_powder[]", + "minecraft:light_blue_concrete_powder[]": "minecraft:light_blue_concrete_powder[]", + "minecraft:yellow_concrete_powder[]": "minecraft:yellow_concrete_powder[]", + "minecraft:lime_concrete_powder[]": "minecraft:lime_concrete_powder[]", + "minecraft:pink_concrete_powder[]": "minecraft:pink_concrete_powder[]", + "minecraft:gray_concrete_powder[]": "minecraft:gray_concrete_powder[]", + "minecraft:light_gray_concrete_powder[]": "minecraft:light_gray_concrete_powder[]", + "minecraft:cyan_concrete_powder[]": "minecraft:cyan_concrete_powder[]", + "minecraft:purple_concrete_powder[]": "minecraft:purple_concrete_powder[]", + "minecraft:blue_concrete_powder[]": "minecraft:blue_concrete_powder[]", + "minecraft:brown_concrete_powder[]": "minecraft:brown_concrete_powder[]", + "minecraft:green_concrete_powder[]": "minecraft:green_concrete_powder[]", + "minecraft:red_concrete_powder[]": "minecraft:red_concrete_powder[]", + "minecraft:black_concrete_powder[]": "minecraft:black_concrete_powder[]", + "minecraft:kelp[age=0]": "minecraft:kelp[kelp_age=0]", + "minecraft:kelp[age=1]": "minecraft:kelp[kelp_age=1]", + "minecraft:kelp[age=2]": "minecraft:kelp[kelp_age=2]", + "minecraft:kelp[age=3]": "minecraft:kelp[kelp_age=3]", + "minecraft:kelp[age=4]": "minecraft:kelp[kelp_age=4]", + "minecraft:kelp[age=5]": "minecraft:kelp[kelp_age=5]", + "minecraft:kelp[age=6]": "minecraft:kelp[kelp_age=6]", + "minecraft:kelp[age=7]": "minecraft:kelp[kelp_age=7]", + "minecraft:kelp[age=8]": "minecraft:kelp[kelp_age=8]", + "minecraft:kelp[age=9]": "minecraft:kelp[kelp_age=9]", + "minecraft:kelp[age=10]": "minecraft:kelp[kelp_age=10]", + "minecraft:kelp[age=11]": "minecraft:kelp[kelp_age=11]", + "minecraft:kelp[age=12]": "minecraft:kelp[kelp_age=12]", + "minecraft:kelp[age=13]": "minecraft:kelp[kelp_age=13]", + "minecraft:kelp[age=14]": "minecraft:kelp[kelp_age=14]", + "minecraft:kelp[age=15]": "minecraft:kelp[kelp_age=15]", + "minecraft:kelp[age=16]": "minecraft:kelp[kelp_age=16]", + "minecraft:kelp[age=17]": "minecraft:kelp[kelp_age=17]", + "minecraft:kelp[age=18]": "minecraft:kelp[kelp_age=18]", + "minecraft:kelp[age=19]": "minecraft:kelp[kelp_age=19]", + "minecraft:kelp[age=20]": "minecraft:kelp[kelp_age=20]", + "minecraft:kelp[age=21]": "minecraft:kelp[kelp_age=21]", + "minecraft:kelp[age=22]": "minecraft:kelp[kelp_age=22]", + "minecraft:kelp[age=23]": "minecraft:kelp[kelp_age=23]", + "minecraft:kelp[age=24]": "minecraft:kelp[kelp_age=24]", + "minecraft:kelp[age=25]": "minecraft:kelp[kelp_age=25]", + "minecraft:kelp_plant[]": "minecraft:kelp[kelp_age=0]", + "minecraft:dried_kelp_block[]": "minecraft:dried_kelp_block[]", + "minecraft:turtle_egg[eggs=1,hatch=0]": "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=one_egg]", + "minecraft:turtle_egg[eggs=1,hatch=1]": "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=one_egg]", + "minecraft:turtle_egg[eggs=1,hatch=2]": "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=one_egg]", + "minecraft:turtle_egg[eggs=2,hatch=0]": "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=two_egg]", + "minecraft:turtle_egg[eggs=2,hatch=1]": "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=two_egg]", + "minecraft:turtle_egg[eggs=2,hatch=2]": "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=two_egg]", + "minecraft:turtle_egg[eggs=3,hatch=0]": "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=three_egg]", + "minecraft:turtle_egg[eggs=3,hatch=1]": "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=three_egg]", + "minecraft:turtle_egg[eggs=3,hatch=2]": "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=three_egg]", + "minecraft:turtle_egg[eggs=4,hatch=0]": "minecraft:turtle_egg[cracked_state=no_cracks,turtle_egg_count=four_egg]", + "minecraft:turtle_egg[eggs=4,hatch=1]": "minecraft:turtle_egg[cracked_state=cracked,turtle_egg_count=four_egg]", + "minecraft:turtle_egg[eggs=4,hatch=2]": "minecraft:turtle_egg[cracked_state=max_cracked,turtle_egg_count=four_egg]", + "minecraft:sniffer_egg[hatch=0]": "minecraft:sniffer_egg[cracked_state=no_cracks]", + "minecraft:sniffer_egg[hatch=1]": "minecraft:sniffer_egg[cracked_state=cracked]", + "minecraft:sniffer_egg[hatch=2]": "minecraft:sniffer_egg[cracked_state=max_cracked]", + "minecraft:dead_tube_coral_block[]": "minecraft:dead_tube_coral_block[]", + "minecraft:dead_brain_coral_block[]": "minecraft:dead_brain_coral_block[]", + "minecraft:dead_bubble_coral_block[]": "minecraft:dead_bubble_coral_block[]", + "minecraft:dead_fire_coral_block[]": "minecraft:dead_fire_coral_block[]", + "minecraft:dead_horn_coral_block[]": "minecraft:dead_horn_coral_block[]", + "minecraft:tube_coral_block[]": "minecraft:tube_coral_block[]", + "minecraft:brain_coral_block[]": "minecraft:brain_coral_block[]", + "minecraft:bubble_coral_block[]": "minecraft:bubble_coral_block[]", + "minecraft:fire_coral_block[]": "minecraft:fire_coral_block[]", + "minecraft:horn_coral_block[]": "minecraft:horn_coral_block[]", + "minecraft:dead_tube_coral[waterlogged=true]": "minecraft:dead_tube_coral[]", + "minecraft:dead_tube_coral[waterlogged=false]": "minecraft:dead_tube_coral[]", + "minecraft:dead_brain_coral[waterlogged=true]": "minecraft:dead_brain_coral[]", + "minecraft:dead_brain_coral[waterlogged=false]": "minecraft:dead_brain_coral[]", + "minecraft:dead_bubble_coral[waterlogged=true]": "minecraft:dead_bubble_coral[]", + "minecraft:dead_bubble_coral[waterlogged=false]": "minecraft:dead_bubble_coral[]", + "minecraft:dead_fire_coral[waterlogged=true]": "minecraft:dead_fire_coral[]", + "minecraft:dead_fire_coral[waterlogged=false]": "minecraft:dead_fire_coral[]", + "minecraft:dead_horn_coral[waterlogged=true]": "minecraft:dead_horn_coral[]", + "minecraft:dead_horn_coral[waterlogged=false]": "minecraft:dead_horn_coral[]", + "minecraft:tube_coral[waterlogged=true]": "minecraft:tube_coral[]", + "minecraft:tube_coral[waterlogged=false]": "minecraft:tube_coral[]", + "minecraft:brain_coral[waterlogged=true]": "minecraft:brain_coral[]", + "minecraft:brain_coral[waterlogged=false]": "minecraft:brain_coral[]", + "minecraft:bubble_coral[waterlogged=true]": "minecraft:bubble_coral[]", + "minecraft:bubble_coral[waterlogged=false]": "minecraft:bubble_coral[]", + "minecraft:fire_coral[waterlogged=true]": "minecraft:fire_coral[]", + "minecraft:fire_coral[waterlogged=false]": "minecraft:fire_coral[]", + "minecraft:horn_coral[waterlogged=true]": "minecraft:horn_coral[]", + "minecraft:horn_coral[waterlogged=false]": "minecraft:horn_coral[]", + "minecraft:dead_tube_coral_fan[waterlogged=true]": "minecraft:dead_tube_coral_fan[coral_fan_direction=0]", + "minecraft:dead_tube_coral_fan[waterlogged=false]": "minecraft:dead_tube_coral_fan[coral_fan_direction=0]", + "minecraft:dead_brain_coral_fan[waterlogged=true]": "minecraft:dead_brain_coral_fan[coral_fan_direction=0]", + "minecraft:dead_brain_coral_fan[waterlogged=false]": "minecraft:dead_brain_coral_fan[coral_fan_direction=0]", + "minecraft:dead_bubble_coral_fan[waterlogged=true]": "minecraft:dead_bubble_coral_fan[coral_fan_direction=0]", + "minecraft:dead_bubble_coral_fan[waterlogged=false]": "minecraft:dead_bubble_coral_fan[coral_fan_direction=0]", + "minecraft:dead_fire_coral_fan[waterlogged=true]": "minecraft:dead_fire_coral_fan[coral_fan_direction=0]", + "minecraft:dead_fire_coral_fan[waterlogged=false]": "minecraft:dead_fire_coral_fan[coral_fan_direction=0]", + "minecraft:dead_horn_coral_fan[waterlogged=true]": "minecraft:dead_horn_coral_fan[coral_fan_direction=0]", + "minecraft:dead_horn_coral_fan[waterlogged=false]": "minecraft:dead_horn_coral_fan[coral_fan_direction=0]", + "minecraft:tube_coral_fan[waterlogged=true]": "minecraft:tube_coral_fan[coral_fan_direction=0]", + "minecraft:tube_coral_fan[waterlogged=false]": "minecraft:tube_coral_fan[coral_fan_direction=0]", + "minecraft:brain_coral_fan[waterlogged=true]": "minecraft:brain_coral_fan[coral_fan_direction=0]", + "minecraft:brain_coral_fan[waterlogged=false]": "minecraft:brain_coral_fan[coral_fan_direction=0]", + "minecraft:bubble_coral_fan[waterlogged=true]": "minecraft:bubble_coral_fan[coral_fan_direction=0]", + "minecraft:bubble_coral_fan[waterlogged=false]": "minecraft:bubble_coral_fan[coral_fan_direction=0]", + "minecraft:fire_coral_fan[waterlogged=true]": "minecraft:fire_coral_fan[coral_fan_direction=0]", + "minecraft:fire_coral_fan[waterlogged=false]": "minecraft:fire_coral_fan[coral_fan_direction=0]", + "minecraft:horn_coral_fan[waterlogged=true]": "minecraft:horn_coral_fan[coral_fan_direction=0]", + "minecraft:horn_coral_fan[waterlogged=false]": "minecraft:horn_coral_fan[coral_fan_direction=0]", + "minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=true,dead_bit=true]", + "minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang3[coral_direction=2,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang3[coral_direction=2,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang3[coral_direction=3,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang3[coral_direction=3,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang3[coral_direction=0,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang3[coral_direction=0,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang3[coral_direction=1,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang3[coral_direction=1,coral_hang_type_bit=false,dead_bit=true]", + "minecraft:tube_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:tube_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:tube_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:tube_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:tube_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:tube_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:tube_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:tube_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:brain_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:brain_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=2,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:brain_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:brain_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=3,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:brain_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:brain_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=0,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:brain_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:brain_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang[coral_direction=1,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:fire_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:fire_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=2,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:fire_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:fire_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=3,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:fire_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:fire_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=0,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:fire_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:fire_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang2[coral_direction=1,coral_hang_type_bit=true,dead_bit=false]", + "minecraft:horn_coral_wall_fan[facing=north,waterlogged=true]": "minecraft:coral_fan_hang3[coral_direction=2,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:horn_coral_wall_fan[facing=north,waterlogged=false]": "minecraft:coral_fan_hang3[coral_direction=2,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:horn_coral_wall_fan[facing=south,waterlogged=true]": "minecraft:coral_fan_hang3[coral_direction=3,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:horn_coral_wall_fan[facing=south,waterlogged=false]": "minecraft:coral_fan_hang3[coral_direction=3,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:horn_coral_wall_fan[facing=west,waterlogged=true]": "minecraft:coral_fan_hang3[coral_direction=0,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:horn_coral_wall_fan[facing=west,waterlogged=false]": "minecraft:coral_fan_hang3[coral_direction=0,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:horn_coral_wall_fan[facing=east,waterlogged=true]": "minecraft:coral_fan_hang3[coral_direction=1,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:horn_coral_wall_fan[facing=east,waterlogged=false]": "minecraft:coral_fan_hang3[coral_direction=1,coral_hang_type_bit=false,dead_bit=false]", + "minecraft:sea_pickle[pickles=1,waterlogged=true]": "minecraft:sea_pickle[cluster_count=0,dead_bit=false]", + "minecraft:sea_pickle[pickles=1,waterlogged=false]": "minecraft:sea_pickle[cluster_count=0,dead_bit=true]", + "minecraft:sea_pickle[pickles=2,waterlogged=true]": "minecraft:sea_pickle[cluster_count=1,dead_bit=false]", + "minecraft:sea_pickle[pickles=2,waterlogged=false]": "minecraft:sea_pickle[cluster_count=1,dead_bit=true]", + "minecraft:sea_pickle[pickles=3,waterlogged=true]": "minecraft:sea_pickle[cluster_count=2,dead_bit=false]", + "minecraft:sea_pickle[pickles=3,waterlogged=false]": "minecraft:sea_pickle[cluster_count=2,dead_bit=true]", + "minecraft:sea_pickle[pickles=4,waterlogged=true]": "minecraft:sea_pickle[cluster_count=3,dead_bit=false]", + "minecraft:sea_pickle[pickles=4,waterlogged=false]": "minecraft:sea_pickle[cluster_count=3,dead_bit=true]", + "minecraft:blue_ice[]": "minecraft:blue_ice[]", + "minecraft:conduit[waterlogged=true]": "minecraft:conduit[]", + "minecraft:conduit[waterlogged=false]": "minecraft:conduit[]", + "minecraft:bamboo_sapling[]": "minecraft:bamboo_sapling[age_bit=false]", + "minecraft:bamboo[age=0,leaves=none,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=none,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=small,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=small,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=large,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=0,leaves=large,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thin]", + "minecraft:bamboo[age=1,leaves=none,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=none,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=no_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=small,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=small,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=small_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=large,stage=0]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thick]", + "minecraft:bamboo[age=1,leaves=large,stage=1]": "minecraft:bamboo[age_bit=false,bamboo_leaf_size=large_leaves,bamboo_stalk_thickness=thick]", + "minecraft:potted_bamboo[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:void_air[]": "minecraft:air[]", + "minecraft:cave_air[]": "minecraft:air[]", + "minecraft:bubble_column[drag=true]": "minecraft:bubble_column[drag_down=true]", + "minecraft:bubble_column[drag=false]": "minecraft:bubble_column[drag_down=false]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_red_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_stone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:mossy_cobblestone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:end_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:normal_stone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_sandstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:smooth_quartz_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:granite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:red_nether_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_andesite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:diorite_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_granite_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=polished_granite]", + "minecraft:polished_granite_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=polished_granite]", + "minecraft:polished_granite_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_granite]", + "minecraft:polished_granite_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_granite]", + "minecraft:polished_granite_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_granite]", + "minecraft:polished_granite_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_granite]", + "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=smooth_red_sandstone]", + "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=smooth_red_sandstone]", + "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=smooth_red_sandstone]", + "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=smooth_red_sandstone]", + "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=smooth_red_sandstone]", + "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=smooth_red_sandstone]", + "minecraft:mossy_stone_brick_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=mossy_stone_brick]", + "minecraft:mossy_stone_brick_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=mossy_stone_brick]", + "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=mossy_stone_brick]", + "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=mossy_stone_brick]", + "minecraft:mossy_stone_brick_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=mossy_stone_brick]", + "minecraft:mossy_stone_brick_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=mossy_stone_brick]", + "minecraft:polished_diorite_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=polished_diorite]", + "minecraft:polished_diorite_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=polished_diorite]", + "minecraft:polished_diorite_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_diorite]", + "minecraft:polished_diorite_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_diorite]", + "minecraft:polished_diorite_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_diorite]", + "minecraft:polished_diorite_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_diorite]", + "minecraft:mossy_cobblestone_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=mossy_cobblestone]", + "minecraft:mossy_cobblestone_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=mossy_cobblestone]", + "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=mossy_cobblestone]", + "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=mossy_cobblestone]", + "minecraft:mossy_cobblestone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=mossy_cobblestone]", + "minecraft:mossy_cobblestone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=mossy_cobblestone]", + "minecraft:end_stone_brick_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=end_stone_brick]", + "minecraft:end_stone_brick_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=end_stone_brick]", + "minecraft:end_stone_brick_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=end_stone_brick]", + "minecraft:end_stone_brick_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=end_stone_brick]", + "minecraft:end_stone_brick_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=end_stone_brick]", + "minecraft:end_stone_brick_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=end_stone_brick]", + "minecraft:smooth_sandstone_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=smooth_sandstone]", + "minecraft:smooth_sandstone_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=smooth_sandstone]", + "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=smooth_sandstone]", + "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=smooth_sandstone]", + "minecraft:smooth_sandstone_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=smooth_sandstone]", + "minecraft:smooth_sandstone_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=smooth_sandstone]", + "minecraft:smooth_quartz_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=smooth_quartz]", + "minecraft:smooth_quartz_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=top,stone_slab_type_4=smooth_quartz]", + "minecraft:smooth_quartz_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=smooth_quartz]", + "minecraft:smooth_quartz_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=smooth_quartz]", + "minecraft:smooth_quartz_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=smooth_quartz]", + "minecraft:smooth_quartz_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab4[minecraft:vertical_half=bottom,stone_slab_type_4=smooth_quartz]", + "minecraft:granite_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=granite]", + "minecraft:granite_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=granite]", + "minecraft:granite_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=granite]", + "minecraft:granite_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=granite]", + "minecraft:granite_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=granite]", + "minecraft:granite_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=granite]", + "minecraft:andesite_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=andesite]", + "minecraft:andesite_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=andesite]", + "minecraft:andesite_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=andesite]", + "minecraft:andesite_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=andesite]", + "minecraft:andesite_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=andesite]", + "minecraft:andesite_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=andesite]", + "minecraft:red_nether_brick_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=red_nether_brick]", + "minecraft:red_nether_brick_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=top,stone_slab_type_2=red_nether_brick]", + "minecraft:red_nether_brick_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_nether_brick]", + "minecraft:red_nether_brick_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_nether_brick]", + "minecraft:red_nether_brick_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_nether_brick]", + "minecraft:red_nether_brick_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab2[minecraft:vertical_half=bottom,stone_slab_type_2=red_nether_brick]", + "minecraft:polished_andesite_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=polished_andesite]", + "minecraft:polished_andesite_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=polished_andesite]", + "minecraft:polished_andesite_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_andesite]", + "minecraft:polished_andesite_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_andesite]", + "minecraft:polished_andesite_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_andesite]", + "minecraft:polished_andesite_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=polished_andesite]", + "minecraft:diorite_slab[type=top,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=diorite]", + "minecraft:diorite_slab[type=top,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=top,stone_slab_type_3=diorite]", + "minecraft:diorite_slab[type=bottom,waterlogged=true]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=diorite]", + "minecraft:diorite_slab[type=bottom,waterlogged=false]": "minecraft:stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=diorite]", + "minecraft:diorite_slab[type=double,waterlogged=true]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=diorite]", + "minecraft:diorite_slab[type=double,waterlogged=false]": "minecraft:double_stone_block_slab3[minecraft:vertical_half=bottom,stone_slab_type_3=diorite]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=prismarine,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=mossy_stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=granite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=stone_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:mud_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:mud_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=andesite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=red_nether_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=sandstone,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=end_brick,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:diorite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobblestone_wall[wall_block_type=diorite,wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:scaffolding[bottom=true,distance=0,waterlogged=true]": "minecraft:scaffolding[stability=0,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=0,waterlogged=false]": "minecraft:scaffolding[stability=0,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=1,waterlogged=true]": "minecraft:scaffolding[stability=1,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=1,waterlogged=false]": "minecraft:scaffolding[stability=1,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=2,waterlogged=true]": "minecraft:scaffolding[stability=2,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=2,waterlogged=false]": "minecraft:scaffolding[stability=2,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=3,waterlogged=true]": "minecraft:scaffolding[stability=3,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=3,waterlogged=false]": "minecraft:scaffolding[stability=3,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=4,waterlogged=true]": "minecraft:scaffolding[stability=4,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=4,waterlogged=false]": "minecraft:scaffolding[stability=4,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=5,waterlogged=true]": "minecraft:scaffolding[stability=5,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=5,waterlogged=false]": "minecraft:scaffolding[stability=5,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=6,waterlogged=true]": "minecraft:scaffolding[stability=6,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=6,waterlogged=false]": "minecraft:scaffolding[stability=6,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=7,waterlogged=true]": "minecraft:scaffolding[stability=7,stability_check=false]", + "minecraft:scaffolding[bottom=true,distance=7,waterlogged=false]": "minecraft:scaffolding[stability=7,stability_check=false]", + "minecraft:scaffolding[bottom=false,distance=0,waterlogged=true]": "minecraft:scaffolding[stability=0,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=0,waterlogged=false]": "minecraft:scaffolding[stability=0,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=1,waterlogged=true]": "minecraft:scaffolding[stability=1,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=1,waterlogged=false]": "minecraft:scaffolding[stability=1,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=2,waterlogged=true]": "minecraft:scaffolding[stability=2,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=2,waterlogged=false]": "minecraft:scaffolding[stability=2,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=3,waterlogged=true]": "minecraft:scaffolding[stability=3,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=3,waterlogged=false]": "minecraft:scaffolding[stability=3,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=4,waterlogged=true]": "minecraft:scaffolding[stability=4,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=4,waterlogged=false]": "minecraft:scaffolding[stability=4,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=5,waterlogged=true]": "minecraft:scaffolding[stability=5,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=5,waterlogged=false]": "minecraft:scaffolding[stability=5,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=6,waterlogged=true]": "minecraft:scaffolding[stability=6,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=6,waterlogged=false]": "minecraft:scaffolding[stability=6,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=7,waterlogged=true]": "minecraft:scaffolding[stability=7,stability_check=true]", + "minecraft:scaffolding[bottom=false,distance=7,waterlogged=false]": "minecraft:scaffolding[stability=7,stability_check=true]", + "minecraft:loom[facing=north]": "minecraft:loom[direction=2]", + "minecraft:loom[facing=south]": "minecraft:loom[direction=0]", + "minecraft:loom[facing=west]": "minecraft:loom[direction=1]", + "minecraft:loom[facing=east]": "minecraft:loom[direction=3]", + "minecraft:barrel[facing=north,open=true]": "minecraft:barrel[facing_direction=2,open_bit=true]", + "minecraft:barrel[facing=north,open=false]": "minecraft:barrel[facing_direction=2,open_bit=false]", + "minecraft:barrel[facing=east,open=true]": "minecraft:barrel[facing_direction=5,open_bit=true]", + "minecraft:barrel[facing=east,open=false]": "minecraft:barrel[facing_direction=5,open_bit=false]", + "minecraft:barrel[facing=south,open=true]": "minecraft:barrel[facing_direction=3,open_bit=true]", + "minecraft:barrel[facing=south,open=false]": "minecraft:barrel[facing_direction=3,open_bit=false]", + "minecraft:barrel[facing=west,open=true]": "minecraft:barrel[facing_direction=4,open_bit=true]", + "minecraft:barrel[facing=west,open=false]": "minecraft:barrel[facing_direction=4,open_bit=false]", + "minecraft:barrel[facing=up,open=true]": "minecraft:barrel[facing_direction=1,open_bit=true]", + "minecraft:barrel[facing=up,open=false]": "minecraft:barrel[facing_direction=1,open_bit=false]", + "minecraft:barrel[facing=down,open=true]": "minecraft:barrel[facing_direction=0,open_bit=true]", + "minecraft:barrel[facing=down,open=false]": "minecraft:barrel[facing_direction=0,open_bit=false]", + "minecraft:smoker[facing=north,lit=true]": "minecraft:lit_smoker[minecraft:cardinal_direction=north]", + "minecraft:smoker[facing=north,lit=false]": "minecraft:smoker[minecraft:cardinal_direction=north]", + "minecraft:smoker[facing=south,lit=true]": "minecraft:lit_smoker[minecraft:cardinal_direction=south]", + "minecraft:smoker[facing=south,lit=false]": "minecraft:smoker[minecraft:cardinal_direction=south]", + "minecraft:smoker[facing=west,lit=true]": "minecraft:lit_smoker[minecraft:cardinal_direction=west]", + "minecraft:smoker[facing=west,lit=false]": "minecraft:smoker[minecraft:cardinal_direction=west]", + "minecraft:smoker[facing=east,lit=true]": "minecraft:lit_smoker[minecraft:cardinal_direction=east]", + "minecraft:smoker[facing=east,lit=false]": "minecraft:smoker[minecraft:cardinal_direction=east]", + "minecraft:blast_furnace[facing=north,lit=true]": "minecraft:lit_blast_furnace[minecraft:cardinal_direction=north]", + "minecraft:blast_furnace[facing=north,lit=false]": "minecraft:blast_furnace[minecraft:cardinal_direction=north]", + "minecraft:blast_furnace[facing=south,lit=true]": "minecraft:lit_blast_furnace[minecraft:cardinal_direction=south]", + "minecraft:blast_furnace[facing=south,lit=false]": "minecraft:blast_furnace[minecraft:cardinal_direction=south]", + "minecraft:blast_furnace[facing=west,lit=true]": "minecraft:lit_blast_furnace[minecraft:cardinal_direction=west]", + "minecraft:blast_furnace[facing=west,lit=false]": "minecraft:blast_furnace[minecraft:cardinal_direction=west]", + "minecraft:blast_furnace[facing=east,lit=true]": "minecraft:lit_blast_furnace[minecraft:cardinal_direction=east]", + "minecraft:blast_furnace[facing=east,lit=false]": "minecraft:blast_furnace[minecraft:cardinal_direction=east]", + "minecraft:cartography_table[]": "minecraft:cartography_table[]", + "minecraft:fletching_table[]": "minecraft:fletching_table[]", + "minecraft:grindstone[face=floor,facing=north]": "minecraft:grindstone[attachment=standing,direction=2]", + "minecraft:grindstone[face=floor,facing=south]": "minecraft:grindstone[attachment=standing,direction=0]", + "minecraft:grindstone[face=floor,facing=west]": "minecraft:grindstone[attachment=standing,direction=1]", + "minecraft:grindstone[face=floor,facing=east]": "minecraft:grindstone[attachment=standing,direction=3]", + "minecraft:grindstone[face=wall,facing=north]": "minecraft:grindstone[attachment=side,direction=2]", + "minecraft:grindstone[face=wall,facing=south]": "minecraft:grindstone[attachment=side,direction=0]", + "minecraft:grindstone[face=wall,facing=west]": "minecraft:grindstone[attachment=side,direction=1]", + "minecraft:grindstone[face=wall,facing=east]": "minecraft:grindstone[attachment=side,direction=3]", + "minecraft:grindstone[face=ceiling,facing=north]": "minecraft:grindstone[attachment=hanging,direction=2]", + "minecraft:grindstone[face=ceiling,facing=south]": "minecraft:grindstone[attachment=hanging,direction=0]", + "minecraft:grindstone[face=ceiling,facing=west]": "minecraft:grindstone[attachment=hanging,direction=1]", + "minecraft:grindstone[face=ceiling,facing=east]": "minecraft:grindstone[attachment=hanging,direction=3]", + "minecraft:lectern[facing=north,has_book=true,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=true]", + "minecraft:lectern[facing=north,has_book=true,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=false]", + "minecraft:lectern[facing=north,has_book=false,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=true]", + "minecraft:lectern[facing=north,has_book=false,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=north,powered_bit=false]", + "minecraft:lectern[facing=south,has_book=true,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=true]", + "minecraft:lectern[facing=south,has_book=true,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=false]", + "minecraft:lectern[facing=south,has_book=false,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=true]", + "minecraft:lectern[facing=south,has_book=false,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=south,powered_bit=false]", + "minecraft:lectern[facing=west,has_book=true,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=true]", + "minecraft:lectern[facing=west,has_book=true,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=false]", + "minecraft:lectern[facing=west,has_book=false,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=true]", + "minecraft:lectern[facing=west,has_book=false,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=west,powered_bit=false]", + "minecraft:lectern[facing=east,has_book=true,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=true]", + "minecraft:lectern[facing=east,has_book=true,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=false]", + "minecraft:lectern[facing=east,has_book=false,powered=true]": "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=true]", + "minecraft:lectern[facing=east,has_book=false,powered=false]": "minecraft:lectern[minecraft:cardinal_direction=east,powered_bit=false]", + "minecraft:smithing_table[]": "minecraft:smithing_table[]", + "minecraft:stonecutter[facing=north]": "minecraft:stonecutter_block[minecraft:cardinal_direction=north]", + "minecraft:stonecutter[facing=south]": "minecraft:stonecutter_block[minecraft:cardinal_direction=south]", + "minecraft:stonecutter[facing=west]": "minecraft:stonecutter_block[minecraft:cardinal_direction=west]", + "minecraft:stonecutter[facing=east]": "minecraft:stonecutter_block[minecraft:cardinal_direction=east]", + "minecraft:bell[attachment=floor,facing=north,powered=true]": "minecraft:bell[attachment=standing,direction=0,toggle_bit=true]", + "minecraft:bell[attachment=floor,facing=north,powered=false]": "minecraft:bell[attachment=standing,direction=0,toggle_bit=false]", + "minecraft:bell[attachment=floor,facing=south,powered=true]": "minecraft:bell[attachment=standing,direction=2,toggle_bit=true]", + "minecraft:bell[attachment=floor,facing=south,powered=false]": "minecraft:bell[attachment=standing,direction=2,toggle_bit=false]", + "minecraft:bell[attachment=floor,facing=west,powered=true]": "minecraft:bell[attachment=standing,direction=3,toggle_bit=true]", + "minecraft:bell[attachment=floor,facing=west,powered=false]": "minecraft:bell[attachment=standing,direction=3,toggle_bit=false]", + "minecraft:bell[attachment=floor,facing=east,powered=true]": "minecraft:bell[attachment=standing,direction=1,toggle_bit=true]", + "minecraft:bell[attachment=floor,facing=east,powered=false]": "minecraft:bell[attachment=standing,direction=1,toggle_bit=false]", + "minecraft:bell[attachment=ceiling,facing=north,powered=true]": "minecraft:bell[attachment=hanging,direction=0,toggle_bit=true]", + "minecraft:bell[attachment=ceiling,facing=north,powered=false]": "minecraft:bell[attachment=hanging,direction=0,toggle_bit=false]", + "minecraft:bell[attachment=ceiling,facing=south,powered=true]": "minecraft:bell[attachment=hanging,direction=2,toggle_bit=true]", + "minecraft:bell[attachment=ceiling,facing=south,powered=false]": "minecraft:bell[attachment=hanging,direction=2,toggle_bit=false]", + "minecraft:bell[attachment=ceiling,facing=west,powered=true]": "minecraft:bell[attachment=hanging,direction=3,toggle_bit=true]", + "minecraft:bell[attachment=ceiling,facing=west,powered=false]": "minecraft:bell[attachment=hanging,direction=3,toggle_bit=false]", + "minecraft:bell[attachment=ceiling,facing=east,powered=true]": "minecraft:bell[attachment=hanging,direction=1,toggle_bit=true]", + "minecraft:bell[attachment=ceiling,facing=east,powered=false]": "minecraft:bell[attachment=hanging,direction=1,toggle_bit=false]", + "minecraft:bell[attachment=single_wall,facing=north,powered=true]": "minecraft:bell[attachment=side,direction=0,toggle_bit=true]", + "minecraft:bell[attachment=single_wall,facing=north,powered=false]": "minecraft:bell[attachment=side,direction=0,toggle_bit=false]", + "minecraft:bell[attachment=single_wall,facing=south,powered=true]": "minecraft:bell[attachment=side,direction=2,toggle_bit=true]", + "minecraft:bell[attachment=single_wall,facing=south,powered=false]": "minecraft:bell[attachment=side,direction=2,toggle_bit=false]", + "minecraft:bell[attachment=single_wall,facing=west,powered=true]": "minecraft:bell[attachment=side,direction=3,toggle_bit=true]", + "minecraft:bell[attachment=single_wall,facing=west,powered=false]": "minecraft:bell[attachment=side,direction=3,toggle_bit=false]", + "minecraft:bell[attachment=single_wall,facing=east,powered=true]": "minecraft:bell[attachment=side,direction=1,toggle_bit=true]", + "minecraft:bell[attachment=single_wall,facing=east,powered=false]": "minecraft:bell[attachment=side,direction=1,toggle_bit=false]", + "minecraft:bell[attachment=double_wall,facing=north,powered=true]": "minecraft:bell[attachment=multiple,direction=0,toggle_bit=true]", + "minecraft:bell[attachment=double_wall,facing=north,powered=false]": "minecraft:bell[attachment=multiple,direction=0,toggle_bit=false]", + "minecraft:bell[attachment=double_wall,facing=south,powered=true]": "minecraft:bell[attachment=multiple,direction=2,toggle_bit=true]", + "minecraft:bell[attachment=double_wall,facing=south,powered=false]": "minecraft:bell[attachment=multiple,direction=2,toggle_bit=false]", + "minecraft:bell[attachment=double_wall,facing=west,powered=true]": "minecraft:bell[attachment=multiple,direction=3,toggle_bit=true]", + "minecraft:bell[attachment=double_wall,facing=west,powered=false]": "minecraft:bell[attachment=multiple,direction=3,toggle_bit=false]", + "minecraft:bell[attachment=double_wall,facing=east,powered=true]": "minecraft:bell[attachment=multiple,direction=1,toggle_bit=true]", + "minecraft:bell[attachment=double_wall,facing=east,powered=false]": "minecraft:bell[attachment=multiple,direction=1,toggle_bit=false]", + "minecraft:lantern[hanging=true,waterlogged=true]": "minecraft:lantern[hanging=true]", + "minecraft:lantern[hanging=true,waterlogged=false]": "minecraft:lantern[hanging=true]", + "minecraft:lantern[hanging=false,waterlogged=true]": "minecraft:lantern[hanging=false]", + "minecraft:lantern[hanging=false,waterlogged=false]": "minecraft:lantern[hanging=false]", + "minecraft:soul_lantern[hanging=true,waterlogged=true]": "minecraft:soul_lantern[hanging=true]", + "minecraft:soul_lantern[hanging=true,waterlogged=false]": "minecraft:soul_lantern[hanging=true]", + "minecraft:soul_lantern[hanging=false,waterlogged=true]": "minecraft:soul_lantern[hanging=false]", + "minecraft:soul_lantern[hanging=false,waterlogged=false]": "minecraft:soul_lantern[hanging=false]", + "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=true]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]": "minecraft:campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=north]", + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=south]", + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=west]", + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=false,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=true]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]": "minecraft:soul_campfire[extinguished=true,minecraft:cardinal_direction=east]", + "minecraft:sweet_berry_bush[age=0]": "minecraft:sweet_berry_bush[growth=0]", + "minecraft:sweet_berry_bush[age=1]": "minecraft:sweet_berry_bush[growth=1]", + "minecraft:sweet_berry_bush[age=2]": "minecraft:sweet_berry_bush[growth=2]", + "minecraft:sweet_berry_bush[age=3]": "minecraft:sweet_berry_bush[growth=3]", + "minecraft:warped_stem[axis=x]": "minecraft:warped_stem[pillar_axis=x]", + "minecraft:warped_stem[axis=y]": "minecraft:warped_stem[pillar_axis=y]", + "minecraft:warped_stem[axis=z]": "minecraft:warped_stem[pillar_axis=z]", + "minecraft:stripped_warped_stem[axis=x]": "minecraft:stripped_warped_stem[pillar_axis=x]", + "minecraft:stripped_warped_stem[axis=y]": "minecraft:stripped_warped_stem[pillar_axis=y]", + "minecraft:stripped_warped_stem[axis=z]": "minecraft:stripped_warped_stem[pillar_axis=z]", + "minecraft:warped_hyphae[axis=x]": "minecraft:warped_hyphae[pillar_axis=x]", + "minecraft:warped_hyphae[axis=y]": "minecraft:warped_hyphae[pillar_axis=y]", + "minecraft:warped_hyphae[axis=z]": "minecraft:warped_hyphae[pillar_axis=z]", + "minecraft:stripped_warped_hyphae[axis=x]": "minecraft:stripped_warped_hyphae[pillar_axis=x]", + "minecraft:stripped_warped_hyphae[axis=y]": "minecraft:stripped_warped_hyphae[pillar_axis=y]", + "minecraft:stripped_warped_hyphae[axis=z]": "minecraft:stripped_warped_hyphae[pillar_axis=z]", + "minecraft:warped_nylium[]": "minecraft:warped_nylium[]", + "minecraft:warped_fungus[]": "minecraft:warped_fungus[]", + "minecraft:warped_wart_block[]": "minecraft:warped_wart_block[]", + "minecraft:warped_roots[]": "minecraft:warped_roots[]", + "minecraft:nether_sprouts[]": "minecraft:nether_sprouts[]", + "minecraft:crimson_stem[axis=x]": "minecraft:crimson_stem[pillar_axis=x]", + "minecraft:crimson_stem[axis=y]": "minecraft:crimson_stem[pillar_axis=y]", + "minecraft:crimson_stem[axis=z]": "minecraft:crimson_stem[pillar_axis=z]", + "minecraft:stripped_crimson_stem[axis=x]": "minecraft:stripped_crimson_stem[pillar_axis=x]", + "minecraft:stripped_crimson_stem[axis=y]": "minecraft:stripped_crimson_stem[pillar_axis=y]", + "minecraft:stripped_crimson_stem[axis=z]": "minecraft:stripped_crimson_stem[pillar_axis=z]", + "minecraft:crimson_hyphae[axis=x]": "minecraft:crimson_hyphae[pillar_axis=x]", + "minecraft:crimson_hyphae[axis=y]": "minecraft:crimson_hyphae[pillar_axis=y]", + "minecraft:crimson_hyphae[axis=z]": "minecraft:crimson_hyphae[pillar_axis=z]", + "minecraft:stripped_crimson_hyphae[axis=x]": "minecraft:stripped_crimson_hyphae[pillar_axis=x]", + "minecraft:stripped_crimson_hyphae[axis=y]": "minecraft:stripped_crimson_hyphae[pillar_axis=y]", + "minecraft:stripped_crimson_hyphae[axis=z]": "minecraft:stripped_crimson_hyphae[pillar_axis=z]", + "minecraft:crimson_nylium[]": "minecraft:crimson_nylium[]", + "minecraft:crimson_fungus[]": "minecraft:crimson_fungus[]", + "minecraft:shroomlight[]": "minecraft:shroomlight[]", + "minecraft:weeping_vines[age=0]": "minecraft:weeping_vines[weeping_vines_age=0]", + "minecraft:weeping_vines[age=1]": "minecraft:weeping_vines[weeping_vines_age=1]", + "minecraft:weeping_vines[age=2]": "minecraft:weeping_vines[weeping_vines_age=2]", + "minecraft:weeping_vines[age=3]": "minecraft:weeping_vines[weeping_vines_age=3]", + "minecraft:weeping_vines[age=4]": "minecraft:weeping_vines[weeping_vines_age=4]", + "minecraft:weeping_vines[age=5]": "minecraft:weeping_vines[weeping_vines_age=5]", + "minecraft:weeping_vines[age=6]": "minecraft:weeping_vines[weeping_vines_age=6]", + "minecraft:weeping_vines[age=7]": "minecraft:weeping_vines[weeping_vines_age=7]", + "minecraft:weeping_vines[age=8]": "minecraft:weeping_vines[weeping_vines_age=8]", + "minecraft:weeping_vines[age=9]": "minecraft:weeping_vines[weeping_vines_age=9]", + "minecraft:weeping_vines[age=10]": "minecraft:weeping_vines[weeping_vines_age=10]", + "minecraft:weeping_vines[age=11]": "minecraft:weeping_vines[weeping_vines_age=11]", + "minecraft:weeping_vines[age=12]": "minecraft:weeping_vines[weeping_vines_age=12]", + "minecraft:weeping_vines[age=13]": "minecraft:weeping_vines[weeping_vines_age=13]", + "minecraft:weeping_vines[age=14]": "minecraft:weeping_vines[weeping_vines_age=14]", + "minecraft:weeping_vines[age=15]": "minecraft:weeping_vines[weeping_vines_age=15]", + "minecraft:weeping_vines[age=16]": "minecraft:weeping_vines[weeping_vines_age=16]", + "minecraft:weeping_vines[age=17]": "minecraft:weeping_vines[weeping_vines_age=17]", + "minecraft:weeping_vines[age=18]": "minecraft:weeping_vines[weeping_vines_age=18]", + "minecraft:weeping_vines[age=19]": "minecraft:weeping_vines[weeping_vines_age=19]", + "minecraft:weeping_vines[age=20]": "minecraft:weeping_vines[weeping_vines_age=20]", + "minecraft:weeping_vines[age=21]": "minecraft:weeping_vines[weeping_vines_age=21]", + "minecraft:weeping_vines[age=22]": "minecraft:weeping_vines[weeping_vines_age=22]", + "minecraft:weeping_vines[age=23]": "minecraft:weeping_vines[weeping_vines_age=23]", + "minecraft:weeping_vines[age=24]": "minecraft:weeping_vines[weeping_vines_age=24]", + "minecraft:weeping_vines[age=25]": "minecraft:weeping_vines[weeping_vines_age=25]", + "minecraft:weeping_vines_plant[]": "minecraft:weeping_vines[weeping_vines_age=0]", + "minecraft:twisting_vines[age=0]": "minecraft:twisting_vines[twisting_vines_age=0]", + "minecraft:twisting_vines[age=1]": "minecraft:twisting_vines[twisting_vines_age=1]", + "minecraft:twisting_vines[age=2]": "minecraft:twisting_vines[twisting_vines_age=2]", + "minecraft:twisting_vines[age=3]": "minecraft:twisting_vines[twisting_vines_age=3]", + "minecraft:twisting_vines[age=4]": "minecraft:twisting_vines[twisting_vines_age=4]", + "minecraft:twisting_vines[age=5]": "minecraft:twisting_vines[twisting_vines_age=5]", + "minecraft:twisting_vines[age=6]": "minecraft:twisting_vines[twisting_vines_age=6]", + "minecraft:twisting_vines[age=7]": "minecraft:twisting_vines[twisting_vines_age=7]", + "minecraft:twisting_vines[age=8]": "minecraft:twisting_vines[twisting_vines_age=8]", + "minecraft:twisting_vines[age=9]": "minecraft:twisting_vines[twisting_vines_age=9]", + "minecraft:twisting_vines[age=10]": "minecraft:twisting_vines[twisting_vines_age=10]", + "minecraft:twisting_vines[age=11]": "minecraft:twisting_vines[twisting_vines_age=11]", + "minecraft:twisting_vines[age=12]": "minecraft:twisting_vines[twisting_vines_age=12]", + "minecraft:twisting_vines[age=13]": "minecraft:twisting_vines[twisting_vines_age=13]", + "minecraft:twisting_vines[age=14]": "minecraft:twisting_vines[twisting_vines_age=14]", + "minecraft:twisting_vines[age=15]": "minecraft:twisting_vines[twisting_vines_age=15]", + "minecraft:twisting_vines[age=16]": "minecraft:twisting_vines[twisting_vines_age=16]", + "minecraft:twisting_vines[age=17]": "minecraft:twisting_vines[twisting_vines_age=17]", + "minecraft:twisting_vines[age=18]": "minecraft:twisting_vines[twisting_vines_age=18]", + "minecraft:twisting_vines[age=19]": "minecraft:twisting_vines[twisting_vines_age=19]", + "minecraft:twisting_vines[age=20]": "minecraft:twisting_vines[twisting_vines_age=20]", + "minecraft:twisting_vines[age=21]": "minecraft:twisting_vines[twisting_vines_age=21]", + "minecraft:twisting_vines[age=22]": "minecraft:twisting_vines[twisting_vines_age=22]", + "minecraft:twisting_vines[age=23]": "minecraft:twisting_vines[twisting_vines_age=23]", + "minecraft:twisting_vines[age=24]": "minecraft:twisting_vines[twisting_vines_age=24]", + "minecraft:twisting_vines[age=25]": "minecraft:twisting_vines[twisting_vines_age=25]", + "minecraft:twisting_vines_plant[]": "minecraft:twisting_vines[twisting_vines_age=0]", + "minecraft:crimson_roots[]": "minecraft:crimson_roots[]", + "minecraft:crimson_planks[]": "minecraft:crimson_planks[]", + "minecraft:warped_planks[]": "minecraft:warped_planks[]", + "minecraft:crimson_slab[type=top,waterlogged=true]": "minecraft:crimson_slab[minecraft:vertical_half=top]", + "minecraft:crimson_slab[type=top,waterlogged=false]": "minecraft:crimson_slab[minecraft:vertical_half=top]", + "minecraft:crimson_slab[type=bottom,waterlogged=true]": "minecraft:crimson_slab[minecraft:vertical_half=bottom]", + "minecraft:crimson_slab[type=bottom,waterlogged=false]": "minecraft:crimson_slab[minecraft:vertical_half=bottom]", + "minecraft:crimson_slab[type=double,waterlogged=true]": "minecraft:crimson_double_slab[minecraft:vertical_half=bottom]", + "minecraft:crimson_slab[type=double,waterlogged=false]": "minecraft:crimson_double_slab[minecraft:vertical_half=bottom]", + "minecraft:warped_slab[type=top,waterlogged=true]": "minecraft:warped_slab[minecraft:vertical_half=top]", + "minecraft:warped_slab[type=top,waterlogged=false]": "minecraft:warped_slab[minecraft:vertical_half=top]", + "minecraft:warped_slab[type=bottom,waterlogged=true]": "minecraft:warped_slab[minecraft:vertical_half=bottom]", + "minecraft:warped_slab[type=bottom,waterlogged=false]": "minecraft:warped_slab[minecraft:vertical_half=bottom]", + "minecraft:warped_slab[type=double,waterlogged=true]": "minecraft:warped_double_slab[minecraft:vertical_half=bottom]", + "minecraft:warped_slab[type=double,waterlogged=false]": "minecraft:warped_double_slab[minecraft:vertical_half=bottom]", + "minecraft:crimson_pressure_plate[powered=true]": "minecraft:crimson_pressure_plate[redstone_signal=15]", + "minecraft:crimson_pressure_plate[powered=false]": "minecraft:crimson_pressure_plate[redstone_signal=0]", + "minecraft:warped_pressure_plate[powered=true]": "minecraft:warped_pressure_plate[redstone_signal=15]", + "minecraft:warped_pressure_plate[powered=false]": "minecraft:warped_pressure_plate[redstone_signal=0]", + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:crimson_fence[]", + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:crimson_fence[]", + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=false]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=true]": "minecraft:warped_fence[]", + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=false]": "minecraft:warped_fence[]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:crimson_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:warped_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:crimson_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:crimson_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:crimson_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:crimson_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:crimson_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:crimson_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:crimson_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:crimson_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:crimson_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:crimson_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:crimson_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:crimson_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:crimson_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:crimson_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:crimson_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:crimson_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:crimson_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:crimson_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:crimson_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:crimson_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:crimson_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:crimson_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:crimson_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:crimson_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:crimson_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:crimson_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:crimson_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:crimson_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:crimson_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:crimson_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:crimson_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:crimson_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=true]": "minecraft:warped_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=false]": "minecraft:warped_fence_gate[direction=2,in_wall_bit=true,open_bit=true]", + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=true]": "minecraft:warped_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=false]": "minecraft:warped_fence_gate[direction=2,in_wall_bit=true,open_bit=false]", + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=true]": "minecraft:warped_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=false]": "minecraft:warped_fence_gate[direction=2,in_wall_bit=false,open_bit=true]", + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=true]": "minecraft:warped_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=false]": "minecraft:warped_fence_gate[direction=2,in_wall_bit=false,open_bit=false]", + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=true]": "minecraft:warped_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=false]": "minecraft:warped_fence_gate[direction=0,in_wall_bit=true,open_bit=true]", + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=true]": "minecraft:warped_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=false]": "minecraft:warped_fence_gate[direction=0,in_wall_bit=true,open_bit=false]", + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=true]": "minecraft:warped_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=false]": "minecraft:warped_fence_gate[direction=0,in_wall_bit=false,open_bit=true]", + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=true]": "minecraft:warped_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=false]": "minecraft:warped_fence_gate[direction=0,in_wall_bit=false,open_bit=false]", + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=true]": "minecraft:warped_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=false]": "minecraft:warped_fence_gate[direction=1,in_wall_bit=true,open_bit=true]", + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=true]": "minecraft:warped_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=false]": "minecraft:warped_fence_gate[direction=1,in_wall_bit=true,open_bit=false]", + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=true]": "minecraft:warped_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=false]": "minecraft:warped_fence_gate[direction=1,in_wall_bit=false,open_bit=true]", + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=true]": "minecraft:warped_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=false]": "minecraft:warped_fence_gate[direction=1,in_wall_bit=false,open_bit=false]", + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=true]": "minecraft:warped_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=false]": "minecraft:warped_fence_gate[direction=3,in_wall_bit=true,open_bit=true]", + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=true]": "minecraft:warped_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=false]": "minecraft:warped_fence_gate[direction=3,in_wall_bit=true,open_bit=false]", + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=true]": "minecraft:warped_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=false]": "minecraft:warped_fence_gate[direction=3,in_wall_bit=false,open_bit=true]", + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=true]": "minecraft:warped_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=false]": "minecraft:warped_fence_gate[direction=3,in_wall_bit=false,open_bit=false]", + "minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:crimson_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:warped_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:crimson_button[face=floor,facing=north,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=north,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=south,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=south,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=west,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=west,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=east,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:crimson_button[face=floor,facing=east,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:crimson_button[face=wall,facing=north,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:crimson_button[face=wall,facing=north,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:crimson_button[face=wall,facing=south,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:crimson_button[face=wall,facing=south,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:crimson_button[face=wall,facing=west,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:crimson_button[face=wall,facing=west,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:crimson_button[face=wall,facing=east,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:crimson_button[face=wall,facing=east,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:crimson_button[face=ceiling,facing=north,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=north,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=south,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=south,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=west,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=west,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=east,powered=true]": "minecraft:crimson_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:crimson_button[face=ceiling,facing=east,powered=false]": "minecraft:crimson_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:warped_button[face=floor,facing=north,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=north,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=south,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=south,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=west,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=west,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=east,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:warped_button[face=floor,facing=east,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:warped_button[face=wall,facing=north,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:warped_button[face=wall,facing=north,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:warped_button[face=wall,facing=south,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:warped_button[face=wall,facing=south,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:warped_button[face=wall,facing=west,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:warped_button[face=wall,facing=west,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:warped_button[face=wall,facing=east,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:warped_button[face=wall,facing=east,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:warped_button[face=ceiling,facing=north,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=north,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=south,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=south,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=west,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=west,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=east,powered=true]": "minecraft:warped_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:warped_button[face=ceiling,facing=east,powered=false]": "minecraft:warped_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:crimson_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:crimson_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:crimson_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:crimson_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:crimson_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:crimson_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:crimson_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:crimson_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:crimson_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:crimson_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:crimson_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:crimson_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:crimson_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:crimson_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:crimson_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:crimson_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:crimson_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:crimson_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:crimson_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:crimson_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:crimson_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:crimson_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:crimson_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:crimson_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:crimson_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:crimson_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:crimson_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:crimson_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:crimson_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:crimson_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:crimson_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:crimson_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:crimson_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:crimson_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:crimson_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:crimson_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:crimson_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:crimson_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:crimson_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:crimson_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:crimson_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:crimson_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:crimson_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:crimson_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:crimson_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:crimson_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:crimson_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:crimson_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:crimson_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:crimson_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:crimson_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:crimson_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:crimson_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:crimson_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:crimson_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:crimson_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:crimson_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:crimson_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:crimson_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:crimson_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:crimson_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:crimson_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:crimson_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:crimson_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:warped_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:warped_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:warped_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:warped_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:warped_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:warped_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:warped_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:warped_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:warped_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:warped_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:warped_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:warped_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:warped_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:warped_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:warped_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:warped_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:warped_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:warped_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:warped_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:warped_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:warped_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:warped_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:warped_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:warped_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:warped_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:warped_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:warped_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:warped_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:warped_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:warped_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:warped_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:warped_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:warped_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:warped_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:warped_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:warped_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:warped_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:warped_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:warped_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:warped_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:warped_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:warped_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:warped_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:warped_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:warped_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:warped_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:warped_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:warped_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:warped_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:warped_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:warped_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:warped_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:warped_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:warped_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:warped_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:warped_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:warped_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:warped_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:warped_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:warped_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:warped_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:warped_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:warped_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:warped_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:crimson_sign[rotation=0,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=0]", + "minecraft:crimson_sign[rotation=0,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=0]", + "minecraft:crimson_sign[rotation=1,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=1]", + "minecraft:crimson_sign[rotation=1,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=1]", + "minecraft:crimson_sign[rotation=2,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=2]", + "minecraft:crimson_sign[rotation=2,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=2]", + "minecraft:crimson_sign[rotation=3,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=3]", + "minecraft:crimson_sign[rotation=3,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=3]", + "minecraft:crimson_sign[rotation=4,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=4]", + "minecraft:crimson_sign[rotation=4,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=4]", + "minecraft:crimson_sign[rotation=5,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=5]", + "minecraft:crimson_sign[rotation=5,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=5]", + "minecraft:crimson_sign[rotation=6,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=6]", + "minecraft:crimson_sign[rotation=6,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=6]", + "minecraft:crimson_sign[rotation=7,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=7]", + "minecraft:crimson_sign[rotation=7,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=7]", + "minecraft:crimson_sign[rotation=8,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=8]", + "minecraft:crimson_sign[rotation=8,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=8]", + "minecraft:crimson_sign[rotation=9,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=9]", + "minecraft:crimson_sign[rotation=9,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=9]", + "minecraft:crimson_sign[rotation=10,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=10]", + "minecraft:crimson_sign[rotation=10,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=10]", + "minecraft:crimson_sign[rotation=11,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=11]", + "minecraft:crimson_sign[rotation=11,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=11]", + "minecraft:crimson_sign[rotation=12,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=12]", + "minecraft:crimson_sign[rotation=12,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=12]", + "minecraft:crimson_sign[rotation=13,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=13]", + "minecraft:crimson_sign[rotation=13,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=13]", + "minecraft:crimson_sign[rotation=14,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=14]", + "minecraft:crimson_sign[rotation=14,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=14]", + "minecraft:crimson_sign[rotation=15,waterlogged=true]": "minecraft:crimson_standing_sign[ground_sign_direction=15]", + "minecraft:crimson_sign[rotation=15,waterlogged=false]": "minecraft:crimson_standing_sign[ground_sign_direction=15]", + "minecraft:warped_sign[rotation=0,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=0]", + "minecraft:warped_sign[rotation=0,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=0]", + "minecraft:warped_sign[rotation=1,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=1]", + "minecraft:warped_sign[rotation=1,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=1]", + "minecraft:warped_sign[rotation=2,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=2]", + "minecraft:warped_sign[rotation=2,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=2]", + "minecraft:warped_sign[rotation=3,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=3]", + "minecraft:warped_sign[rotation=3,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=3]", + "minecraft:warped_sign[rotation=4,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=4]", + "minecraft:warped_sign[rotation=4,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=4]", + "minecraft:warped_sign[rotation=5,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=5]", + "minecraft:warped_sign[rotation=5,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=5]", + "minecraft:warped_sign[rotation=6,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=6]", + "minecraft:warped_sign[rotation=6,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=6]", + "minecraft:warped_sign[rotation=7,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=7]", + "minecraft:warped_sign[rotation=7,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=7]", + "minecraft:warped_sign[rotation=8,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=8]", + "minecraft:warped_sign[rotation=8,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=8]", + "minecraft:warped_sign[rotation=9,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=9]", + "minecraft:warped_sign[rotation=9,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=9]", + "minecraft:warped_sign[rotation=10,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=10]", + "minecraft:warped_sign[rotation=10,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=10]", + "minecraft:warped_sign[rotation=11,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=11]", + "minecraft:warped_sign[rotation=11,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=11]", + "minecraft:warped_sign[rotation=12,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=12]", + "minecraft:warped_sign[rotation=12,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=12]", + "minecraft:warped_sign[rotation=13,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=13]", + "minecraft:warped_sign[rotation=13,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=13]", + "minecraft:warped_sign[rotation=14,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=14]", + "minecraft:warped_sign[rotation=14,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=14]", + "minecraft:warped_sign[rotation=15,waterlogged=true]": "minecraft:warped_standing_sign[ground_sign_direction=15]", + "minecraft:warped_sign[rotation=15,waterlogged=false]": "minecraft:warped_standing_sign[ground_sign_direction=15]", + "minecraft:crimson_wall_sign[facing=north,waterlogged=true]": "minecraft:crimson_wall_sign[facing_direction=2]", + "minecraft:crimson_wall_sign[facing=north,waterlogged=false]": "minecraft:crimson_wall_sign[facing_direction=2]", + "minecraft:crimson_wall_sign[facing=south,waterlogged=true]": "minecraft:crimson_wall_sign[facing_direction=3]", + "minecraft:crimson_wall_sign[facing=south,waterlogged=false]": "minecraft:crimson_wall_sign[facing_direction=3]", + "minecraft:crimson_wall_sign[facing=west,waterlogged=true]": "minecraft:crimson_wall_sign[facing_direction=4]", + "minecraft:crimson_wall_sign[facing=west,waterlogged=false]": "minecraft:crimson_wall_sign[facing_direction=4]", + "minecraft:crimson_wall_sign[facing=east,waterlogged=true]": "minecraft:crimson_wall_sign[facing_direction=5]", + "minecraft:crimson_wall_sign[facing=east,waterlogged=false]": "minecraft:crimson_wall_sign[facing_direction=5]", + "minecraft:warped_wall_sign[facing=north,waterlogged=true]": "minecraft:warped_wall_sign[facing_direction=2]", + "minecraft:warped_wall_sign[facing=north,waterlogged=false]": "minecraft:warped_wall_sign[facing_direction=2]", + "minecraft:warped_wall_sign[facing=south,waterlogged=true]": "minecraft:warped_wall_sign[facing_direction=3]", + "minecraft:warped_wall_sign[facing=south,waterlogged=false]": "minecraft:warped_wall_sign[facing_direction=3]", + "minecraft:warped_wall_sign[facing=west,waterlogged=true]": "minecraft:warped_wall_sign[facing_direction=4]", + "minecraft:warped_wall_sign[facing=west,waterlogged=false]": "minecraft:warped_wall_sign[facing_direction=4]", + "minecraft:warped_wall_sign[facing=east,waterlogged=true]": "minecraft:warped_wall_sign[facing_direction=5]", + "minecraft:warped_wall_sign[facing=east,waterlogged=false]": "minecraft:warped_wall_sign[facing_direction=5]", + "minecraft:structure_block[mode=save]": "minecraft:structure_block[structure_block_type=save]", + "minecraft:structure_block[mode=load]": "minecraft:structure_block[structure_block_type=load]", + "minecraft:structure_block[mode=corner]": "minecraft:structure_block[structure_block_type=corner]", + "minecraft:structure_block[mode=data]": "minecraft:structure_block[structure_block_type=data]", + "minecraft:jigsaw[orientation=down_east]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=down_north]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=down_south]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=down_west]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=up_east]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=up_north]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=up_south]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=up_west]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=west_up]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=east_up]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=north_up]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:jigsaw[orientation=south_up]": "minecraft:jigsaw[facing_direction=0,rotation=0]", + "minecraft:composter[level=0]": "minecraft:composter[composter_fill_level=0]", + "minecraft:composter[level=1]": "minecraft:composter[composter_fill_level=1]", + "minecraft:composter[level=2]": "minecraft:composter[composter_fill_level=2]", + "minecraft:composter[level=3]": "minecraft:composter[composter_fill_level=3]", + "minecraft:composter[level=4]": "minecraft:composter[composter_fill_level=4]", + "minecraft:composter[level=5]": "minecraft:composter[composter_fill_level=5]", + "minecraft:composter[level=6]": "minecraft:composter[composter_fill_level=6]", + "minecraft:composter[level=7]": "minecraft:composter[composter_fill_level=7]", + "minecraft:composter[level=8]": "minecraft:composter[composter_fill_level=8]", + "minecraft:target[power=0]": "minecraft:target[]", + "minecraft:target[power=1]": "minecraft:target[]", + "minecraft:target[power=2]": "minecraft:target[]", + "minecraft:target[power=3]": "minecraft:target[]", + "minecraft:target[power=4]": "minecraft:target[]", + "minecraft:target[power=5]": "minecraft:target[]", + "minecraft:target[power=6]": "minecraft:target[]", + "minecraft:target[power=7]": "minecraft:target[]", + "minecraft:target[power=8]": "minecraft:target[]", + "minecraft:target[power=9]": "minecraft:target[]", + "minecraft:target[power=10]": "minecraft:target[]", + "minecraft:target[power=11]": "minecraft:target[]", + "minecraft:target[power=12]": "minecraft:target[]", + "minecraft:target[power=13]": "minecraft:target[]", + "minecraft:target[power=14]": "minecraft:target[]", + "minecraft:target[power=15]": "minecraft:target[]", + "minecraft:bee_nest[facing=north,honey_level=0]": "minecraft:bee_nest[direction=2,honey_level=0]", + "minecraft:bee_nest[facing=north,honey_level=1]": "minecraft:bee_nest[direction=2,honey_level=1]", + "minecraft:bee_nest[facing=north,honey_level=2]": "minecraft:bee_nest[direction=2,honey_level=2]", + "minecraft:bee_nest[facing=north,honey_level=3]": "minecraft:bee_nest[direction=2,honey_level=3]", + "minecraft:bee_nest[facing=north,honey_level=4]": "minecraft:bee_nest[direction=2,honey_level=4]", + "minecraft:bee_nest[facing=north,honey_level=5]": "minecraft:bee_nest[direction=2,honey_level=5]", + "minecraft:bee_nest[facing=south,honey_level=0]": "minecraft:bee_nest[direction=0,honey_level=0]", + "minecraft:bee_nest[facing=south,honey_level=1]": "minecraft:bee_nest[direction=0,honey_level=1]", + "minecraft:bee_nest[facing=south,honey_level=2]": "minecraft:bee_nest[direction=0,honey_level=2]", + "minecraft:bee_nest[facing=south,honey_level=3]": "minecraft:bee_nest[direction=0,honey_level=3]", + "minecraft:bee_nest[facing=south,honey_level=4]": "minecraft:bee_nest[direction=0,honey_level=4]", + "minecraft:bee_nest[facing=south,honey_level=5]": "minecraft:bee_nest[direction=0,honey_level=5]", + "minecraft:bee_nest[facing=west,honey_level=0]": "minecraft:bee_nest[direction=1,honey_level=0]", + "minecraft:bee_nest[facing=west,honey_level=1]": "minecraft:bee_nest[direction=1,honey_level=1]", + "minecraft:bee_nest[facing=west,honey_level=2]": "minecraft:bee_nest[direction=1,honey_level=2]", + "minecraft:bee_nest[facing=west,honey_level=3]": "minecraft:bee_nest[direction=1,honey_level=3]", + "minecraft:bee_nest[facing=west,honey_level=4]": "minecraft:bee_nest[direction=1,honey_level=4]", + "minecraft:bee_nest[facing=west,honey_level=5]": "minecraft:bee_nest[direction=1,honey_level=5]", + "minecraft:bee_nest[facing=east,honey_level=0]": "minecraft:bee_nest[direction=3,honey_level=0]", + "minecraft:bee_nest[facing=east,honey_level=1]": "minecraft:bee_nest[direction=3,honey_level=1]", + "minecraft:bee_nest[facing=east,honey_level=2]": "minecraft:bee_nest[direction=3,honey_level=2]", + "minecraft:bee_nest[facing=east,honey_level=3]": "minecraft:bee_nest[direction=3,honey_level=3]", + "minecraft:bee_nest[facing=east,honey_level=4]": "minecraft:bee_nest[direction=3,honey_level=4]", + "minecraft:bee_nest[facing=east,honey_level=5]": "minecraft:bee_nest[direction=3,honey_level=5]", + "minecraft:beehive[facing=north,honey_level=0]": "minecraft:beehive[direction=2,honey_level=0]", + "minecraft:beehive[facing=north,honey_level=1]": "minecraft:beehive[direction=2,honey_level=1]", + "minecraft:beehive[facing=north,honey_level=2]": "minecraft:beehive[direction=2,honey_level=2]", + "minecraft:beehive[facing=north,honey_level=3]": "minecraft:beehive[direction=2,honey_level=3]", + "minecraft:beehive[facing=north,honey_level=4]": "minecraft:beehive[direction=2,honey_level=4]", + "minecraft:beehive[facing=north,honey_level=5]": "minecraft:beehive[direction=2,honey_level=5]", + "minecraft:beehive[facing=south,honey_level=0]": "minecraft:beehive[direction=0,honey_level=0]", + "minecraft:beehive[facing=south,honey_level=1]": "minecraft:beehive[direction=0,honey_level=1]", + "minecraft:beehive[facing=south,honey_level=2]": "minecraft:beehive[direction=0,honey_level=2]", + "minecraft:beehive[facing=south,honey_level=3]": "minecraft:beehive[direction=0,honey_level=3]", + "minecraft:beehive[facing=south,honey_level=4]": "minecraft:beehive[direction=0,honey_level=4]", + "minecraft:beehive[facing=south,honey_level=5]": "minecraft:beehive[direction=0,honey_level=5]", + "minecraft:beehive[facing=west,honey_level=0]": "minecraft:beehive[direction=1,honey_level=0]", + "minecraft:beehive[facing=west,honey_level=1]": "minecraft:beehive[direction=1,honey_level=1]", + "minecraft:beehive[facing=west,honey_level=2]": "minecraft:beehive[direction=1,honey_level=2]", + "minecraft:beehive[facing=west,honey_level=3]": "minecraft:beehive[direction=1,honey_level=3]", + "minecraft:beehive[facing=west,honey_level=4]": "minecraft:beehive[direction=1,honey_level=4]", + "minecraft:beehive[facing=west,honey_level=5]": "minecraft:beehive[direction=1,honey_level=5]", + "minecraft:beehive[facing=east,honey_level=0]": "minecraft:beehive[direction=3,honey_level=0]", + "minecraft:beehive[facing=east,honey_level=1]": "minecraft:beehive[direction=3,honey_level=1]", + "minecraft:beehive[facing=east,honey_level=2]": "minecraft:beehive[direction=3,honey_level=2]", + "minecraft:beehive[facing=east,honey_level=3]": "minecraft:beehive[direction=3,honey_level=3]", + "minecraft:beehive[facing=east,honey_level=4]": "minecraft:beehive[direction=3,honey_level=4]", + "minecraft:beehive[facing=east,honey_level=5]": "minecraft:beehive[direction=3,honey_level=5]", + "minecraft:honey_block[]": "minecraft:honey_block[]", + "minecraft:honeycomb_block[]": "minecraft:honeycomb_block[]", + "minecraft:netherite_block[]": "minecraft:netherite_block[]", + "minecraft:ancient_debris[]": "minecraft:ancient_debris[]", + "minecraft:crying_obsidian[]": "minecraft:crying_obsidian[]", + "minecraft:respawn_anchor[charges=0]": "minecraft:respawn_anchor[respawn_anchor_charge=0]", + "minecraft:respawn_anchor[charges=1]": "minecraft:respawn_anchor[respawn_anchor_charge=1]", + "minecraft:respawn_anchor[charges=2]": "minecraft:respawn_anchor[respawn_anchor_charge=2]", + "minecraft:respawn_anchor[charges=3]": "minecraft:respawn_anchor[respawn_anchor_charge=3]", + "minecraft:respawn_anchor[charges=4]": "minecraft:respawn_anchor[respawn_anchor_charge=4]", + "minecraft:potted_crimson_fungus[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_warped_fungus[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_crimson_roots[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_warped_roots[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:lodestone[]": "minecraft:lodestone[]", + "minecraft:blackstone[]": "minecraft:blackstone[]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:blackstone_slab[type=top,waterlogged=true]": "minecraft:blackstone_slab[minecraft:vertical_half=top]", + "minecraft:blackstone_slab[type=top,waterlogged=false]": "minecraft:blackstone_slab[minecraft:vertical_half=top]", + "minecraft:blackstone_slab[type=bottom,waterlogged=true]": "minecraft:blackstone_slab[minecraft:vertical_half=bottom]", + "minecraft:blackstone_slab[type=bottom,waterlogged=false]": "minecraft:blackstone_slab[minecraft:vertical_half=bottom]", + "minecraft:blackstone_slab[type=double,waterlogged=true]": "minecraft:blackstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:blackstone_slab[type=double,waterlogged=false]": "minecraft:blackstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone[]": "minecraft:polished_blackstone[]", + "minecraft:polished_blackstone_bricks[]": "minecraft:polished_blackstone_bricks[]", + "minecraft:cracked_polished_blackstone_bricks[]": "minecraft:cracked_polished_blackstone_bricks[]", + "minecraft:chiseled_polished_blackstone[]": "minecraft:chiseled_polished_blackstone[]", + "minecraft:polished_blackstone_brick_slab[type=top,waterlogged=true]": "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=top]", + "minecraft:polished_blackstone_brick_slab[type=top,waterlogged=false]": "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=top]", + "minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=true]": "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=false]": "minecraft:polished_blackstone_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_brick_slab[type=double,waterlogged=true]": "minecraft:polished_blackstone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_brick_slab[type=double,waterlogged=false]": "minecraft:polished_blackstone_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:gilded_blackstone[]": "minecraft:gilded_blackstone[]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_blackstone_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_blackstone_slab[type=top,waterlogged=true]": "minecraft:polished_blackstone_slab[minecraft:vertical_half=top]", + "minecraft:polished_blackstone_slab[type=top,waterlogged=false]": "minecraft:polished_blackstone_slab[minecraft:vertical_half=top]", + "minecraft:polished_blackstone_slab[type=bottom,waterlogged=true]": "minecraft:polished_blackstone_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_slab[type=bottom,waterlogged=false]": "minecraft:polished_blackstone_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_slab[type=double,waterlogged=true]": "minecraft:polished_blackstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_slab[type=double,waterlogged=false]": "minecraft:polished_blackstone_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_blackstone_pressure_plate[powered=true]": "minecraft:polished_blackstone_pressure_plate[redstone_signal=15]", + "minecraft:polished_blackstone_pressure_plate[powered=false]": "minecraft:polished_blackstone_pressure_plate[redstone_signal=0]", + "minecraft:polished_blackstone_button[face=floor,facing=north,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=north,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=south,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=south,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=west,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=west,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=east,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=1]", + "minecraft:polished_blackstone_button[face=floor,facing=east,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=1]", + "minecraft:polished_blackstone_button[face=wall,facing=north,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=2]", + "minecraft:polished_blackstone_button[face=wall,facing=north,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=2]", + "minecraft:polished_blackstone_button[face=wall,facing=south,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=3]", + "minecraft:polished_blackstone_button[face=wall,facing=south,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=3]", + "minecraft:polished_blackstone_button[face=wall,facing=west,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=4]", + "minecraft:polished_blackstone_button[face=wall,facing=west,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=4]", + "minecraft:polished_blackstone_button[face=wall,facing=east,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=5]", + "minecraft:polished_blackstone_button[face=wall,facing=east,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=5]", + "minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=north,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=south,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=west,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=true]": "minecraft:polished_blackstone_button[button_pressed_bit=true,facing_direction=0]", + "minecraft:polished_blackstone_button[face=ceiling,facing=east,powered=false]": "minecraft:polished_blackstone_button[button_pressed_bit=false,facing_direction=0]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_blackstone_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:chiseled_nether_bricks[]": "minecraft:chiseled_nether_bricks[]", + "minecraft:cracked_nether_bricks[]": "minecraft:cracked_nether_bricks[]", + "minecraft:quartz_bricks[]": "minecraft:quartz_bricks[]", + "minecraft:candle[candles=1,lit=true,waterlogged=true]": "minecraft:candle[candles=0,lit=true]", + "minecraft:candle[candles=1,lit=true,waterlogged=false]": "minecraft:candle[candles=0,lit=true]", + "minecraft:candle[candles=1,lit=false,waterlogged=true]": "minecraft:candle[candles=0,lit=false]", + "minecraft:candle[candles=1,lit=false,waterlogged=false]": "minecraft:candle[candles=0,lit=false]", + "minecraft:candle[candles=2,lit=true,waterlogged=true]": "minecraft:candle[candles=1,lit=true]", + "minecraft:candle[candles=2,lit=true,waterlogged=false]": "minecraft:candle[candles=1,lit=true]", + "minecraft:candle[candles=2,lit=false,waterlogged=true]": "minecraft:candle[candles=1,lit=false]", + "minecraft:candle[candles=2,lit=false,waterlogged=false]": "minecraft:candle[candles=1,lit=false]", + "minecraft:candle[candles=3,lit=true,waterlogged=true]": "minecraft:candle[candles=2,lit=true]", + "minecraft:candle[candles=3,lit=true,waterlogged=false]": "minecraft:candle[candles=2,lit=true]", + "minecraft:candle[candles=3,lit=false,waterlogged=true]": "minecraft:candle[candles=2,lit=false]", + "minecraft:candle[candles=3,lit=false,waterlogged=false]": "minecraft:candle[candles=2,lit=false]", + "minecraft:candle[candles=4,lit=true,waterlogged=true]": "minecraft:candle[candles=3,lit=true]", + "minecraft:candle[candles=4,lit=true,waterlogged=false]": "minecraft:candle[candles=3,lit=true]", + "minecraft:candle[candles=4,lit=false,waterlogged=true]": "minecraft:candle[candles=3,lit=false]", + "minecraft:candle[candles=4,lit=false,waterlogged=false]": "minecraft:candle[candles=3,lit=false]", + "minecraft:white_candle[candles=1,lit=true,waterlogged=true]": "minecraft:white_candle[candles=0,lit=true]", + "minecraft:white_candle[candles=1,lit=true,waterlogged=false]": "minecraft:white_candle[candles=0,lit=true]", + "minecraft:white_candle[candles=1,lit=false,waterlogged=true]": "minecraft:white_candle[candles=0,lit=false]", + "minecraft:white_candle[candles=1,lit=false,waterlogged=false]": "minecraft:white_candle[candles=0,lit=false]", + "minecraft:white_candle[candles=2,lit=true,waterlogged=true]": "minecraft:white_candle[candles=1,lit=true]", + "minecraft:white_candle[candles=2,lit=true,waterlogged=false]": "minecraft:white_candle[candles=1,lit=true]", + "minecraft:white_candle[candles=2,lit=false,waterlogged=true]": "minecraft:white_candle[candles=1,lit=false]", + "minecraft:white_candle[candles=2,lit=false,waterlogged=false]": "minecraft:white_candle[candles=1,lit=false]", + "minecraft:white_candle[candles=3,lit=true,waterlogged=true]": "minecraft:white_candle[candles=2,lit=true]", + "minecraft:white_candle[candles=3,lit=true,waterlogged=false]": "minecraft:white_candle[candles=2,lit=true]", + "minecraft:white_candle[candles=3,lit=false,waterlogged=true]": "minecraft:white_candle[candles=2,lit=false]", + "minecraft:white_candle[candles=3,lit=false,waterlogged=false]": "minecraft:white_candle[candles=2,lit=false]", + "minecraft:white_candle[candles=4,lit=true,waterlogged=true]": "minecraft:white_candle[candles=3,lit=true]", + "minecraft:white_candle[candles=4,lit=true,waterlogged=false]": "minecraft:white_candle[candles=3,lit=true]", + "minecraft:white_candle[candles=4,lit=false,waterlogged=true]": "minecraft:white_candle[candles=3,lit=false]", + "minecraft:white_candle[candles=4,lit=false,waterlogged=false]": "minecraft:white_candle[candles=3,lit=false]", + "minecraft:orange_candle[candles=1,lit=true,waterlogged=true]": "minecraft:orange_candle[candles=0,lit=true]", + "minecraft:orange_candle[candles=1,lit=true,waterlogged=false]": "minecraft:orange_candle[candles=0,lit=true]", + "minecraft:orange_candle[candles=1,lit=false,waterlogged=true]": "minecraft:orange_candle[candles=0,lit=false]", + "minecraft:orange_candle[candles=1,lit=false,waterlogged=false]": "minecraft:orange_candle[candles=0,lit=false]", + "minecraft:orange_candle[candles=2,lit=true,waterlogged=true]": "minecraft:orange_candle[candles=1,lit=true]", + "minecraft:orange_candle[candles=2,lit=true,waterlogged=false]": "minecraft:orange_candle[candles=1,lit=true]", + "minecraft:orange_candle[candles=2,lit=false,waterlogged=true]": "minecraft:orange_candle[candles=1,lit=false]", + "minecraft:orange_candle[candles=2,lit=false,waterlogged=false]": "minecraft:orange_candle[candles=1,lit=false]", + "minecraft:orange_candle[candles=3,lit=true,waterlogged=true]": "minecraft:orange_candle[candles=2,lit=true]", + "minecraft:orange_candle[candles=3,lit=true,waterlogged=false]": "minecraft:orange_candle[candles=2,lit=true]", + "minecraft:orange_candle[candles=3,lit=false,waterlogged=true]": "minecraft:orange_candle[candles=2,lit=false]", + "minecraft:orange_candle[candles=3,lit=false,waterlogged=false]": "minecraft:orange_candle[candles=2,lit=false]", + "minecraft:orange_candle[candles=4,lit=true,waterlogged=true]": "minecraft:orange_candle[candles=3,lit=true]", + "minecraft:orange_candle[candles=4,lit=true,waterlogged=false]": "minecraft:orange_candle[candles=3,lit=true]", + "minecraft:orange_candle[candles=4,lit=false,waterlogged=true]": "minecraft:orange_candle[candles=3,lit=false]", + "minecraft:orange_candle[candles=4,lit=false,waterlogged=false]": "minecraft:orange_candle[candles=3,lit=false]", + "minecraft:magenta_candle[candles=1,lit=true,waterlogged=true]": "minecraft:magenta_candle[candles=0,lit=true]", + "minecraft:magenta_candle[candles=1,lit=true,waterlogged=false]": "minecraft:magenta_candle[candles=0,lit=true]", + "minecraft:magenta_candle[candles=1,lit=false,waterlogged=true]": "minecraft:magenta_candle[candles=0,lit=false]", + "minecraft:magenta_candle[candles=1,lit=false,waterlogged=false]": "minecraft:magenta_candle[candles=0,lit=false]", + "minecraft:magenta_candle[candles=2,lit=true,waterlogged=true]": "minecraft:magenta_candle[candles=1,lit=true]", + "minecraft:magenta_candle[candles=2,lit=true,waterlogged=false]": "minecraft:magenta_candle[candles=1,lit=true]", + "minecraft:magenta_candle[candles=2,lit=false,waterlogged=true]": "minecraft:magenta_candle[candles=1,lit=false]", + "minecraft:magenta_candle[candles=2,lit=false,waterlogged=false]": "minecraft:magenta_candle[candles=1,lit=false]", + "minecraft:magenta_candle[candles=3,lit=true,waterlogged=true]": "minecraft:magenta_candle[candles=2,lit=true]", + "minecraft:magenta_candle[candles=3,lit=true,waterlogged=false]": "minecraft:magenta_candle[candles=2,lit=true]", + "minecraft:magenta_candle[candles=3,lit=false,waterlogged=true]": "minecraft:magenta_candle[candles=2,lit=false]", + "minecraft:magenta_candle[candles=3,lit=false,waterlogged=false]": "minecraft:magenta_candle[candles=2,lit=false]", + "minecraft:magenta_candle[candles=4,lit=true,waterlogged=true]": "minecraft:magenta_candle[candles=3,lit=true]", + "minecraft:magenta_candle[candles=4,lit=true,waterlogged=false]": "minecraft:magenta_candle[candles=3,lit=true]", + "minecraft:magenta_candle[candles=4,lit=false,waterlogged=true]": "minecraft:magenta_candle[candles=3,lit=false]", + "minecraft:magenta_candle[candles=4,lit=false,waterlogged=false]": "minecraft:magenta_candle[candles=3,lit=false]", + "minecraft:light_blue_candle[candles=1,lit=true,waterlogged=true]": "minecraft:light_blue_candle[candles=0,lit=true]", + "minecraft:light_blue_candle[candles=1,lit=true,waterlogged=false]": "minecraft:light_blue_candle[candles=0,lit=true]", + "minecraft:light_blue_candle[candles=1,lit=false,waterlogged=true]": "minecraft:light_blue_candle[candles=0,lit=false]", + "minecraft:light_blue_candle[candles=1,lit=false,waterlogged=false]": "minecraft:light_blue_candle[candles=0,lit=false]", + "minecraft:light_blue_candle[candles=2,lit=true,waterlogged=true]": "minecraft:light_blue_candle[candles=1,lit=true]", + "minecraft:light_blue_candle[candles=2,lit=true,waterlogged=false]": "minecraft:light_blue_candle[candles=1,lit=true]", + "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=true]": "minecraft:light_blue_candle[candles=1,lit=false]", + "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false]": "minecraft:light_blue_candle[candles=1,lit=false]", + "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true]": "minecraft:light_blue_candle[candles=2,lit=true]", + "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false]": "minecraft:light_blue_candle[candles=2,lit=true]", + "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true]": "minecraft:light_blue_candle[candles=2,lit=false]", + "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false]": "minecraft:light_blue_candle[candles=2,lit=false]", + "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true]": "minecraft:light_blue_candle[candles=3,lit=true]", + "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false]": "minecraft:light_blue_candle[candles=3,lit=true]", + "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true]": "minecraft:light_blue_candle[candles=3,lit=false]", + "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false]": "minecraft:light_blue_candle[candles=3,lit=false]", + "minecraft:yellow_candle[candles=1,lit=true,waterlogged=true]": "minecraft:yellow_candle[candles=0,lit=true]", + "minecraft:yellow_candle[candles=1,lit=true,waterlogged=false]": "minecraft:yellow_candle[candles=0,lit=true]", + "minecraft:yellow_candle[candles=1,lit=false,waterlogged=true]": "minecraft:yellow_candle[candles=0,lit=false]", + "minecraft:yellow_candle[candles=1,lit=false,waterlogged=false]": "minecraft:yellow_candle[candles=0,lit=false]", + "minecraft:yellow_candle[candles=2,lit=true,waterlogged=true]": "minecraft:yellow_candle[candles=1,lit=true]", + "minecraft:yellow_candle[candles=2,lit=true,waterlogged=false]": "minecraft:yellow_candle[candles=1,lit=true]", + "minecraft:yellow_candle[candles=2,lit=false,waterlogged=true]": "minecraft:yellow_candle[candles=1,lit=false]", + "minecraft:yellow_candle[candles=2,lit=false,waterlogged=false]": "minecraft:yellow_candle[candles=1,lit=false]", + "minecraft:yellow_candle[candles=3,lit=true,waterlogged=true]": "minecraft:yellow_candle[candles=2,lit=true]", + "minecraft:yellow_candle[candles=3,lit=true,waterlogged=false]": "minecraft:yellow_candle[candles=2,lit=true]", + "minecraft:yellow_candle[candles=3,lit=false,waterlogged=true]": "minecraft:yellow_candle[candles=2,lit=false]", + "minecraft:yellow_candle[candles=3,lit=false,waterlogged=false]": "minecraft:yellow_candle[candles=2,lit=false]", + "minecraft:yellow_candle[candles=4,lit=true,waterlogged=true]": "minecraft:yellow_candle[candles=3,lit=true]", + "minecraft:yellow_candle[candles=4,lit=true,waterlogged=false]": "minecraft:yellow_candle[candles=3,lit=true]", + "minecraft:yellow_candle[candles=4,lit=false,waterlogged=true]": "minecraft:yellow_candle[candles=3,lit=false]", + "minecraft:yellow_candle[candles=4,lit=false,waterlogged=false]": "minecraft:yellow_candle[candles=3,lit=false]", + "minecraft:lime_candle[candles=1,lit=true,waterlogged=true]": "minecraft:lime_candle[candles=0,lit=true]", + "minecraft:lime_candle[candles=1,lit=true,waterlogged=false]": "minecraft:lime_candle[candles=0,lit=true]", + "minecraft:lime_candle[candles=1,lit=false,waterlogged=true]": "minecraft:lime_candle[candles=0,lit=false]", + "minecraft:lime_candle[candles=1,lit=false,waterlogged=false]": "minecraft:lime_candle[candles=0,lit=false]", + "minecraft:lime_candle[candles=2,lit=true,waterlogged=true]": "minecraft:lime_candle[candles=1,lit=true]", + "minecraft:lime_candle[candles=2,lit=true,waterlogged=false]": "minecraft:lime_candle[candles=1,lit=true]", + "minecraft:lime_candle[candles=2,lit=false,waterlogged=true]": "minecraft:lime_candle[candles=1,lit=false]", + "minecraft:lime_candle[candles=2,lit=false,waterlogged=false]": "minecraft:lime_candle[candles=1,lit=false]", + "minecraft:lime_candle[candles=3,lit=true,waterlogged=true]": "minecraft:lime_candle[candles=2,lit=true]", + "minecraft:lime_candle[candles=3,lit=true,waterlogged=false]": "minecraft:lime_candle[candles=2,lit=true]", + "minecraft:lime_candle[candles=3,lit=false,waterlogged=true]": "minecraft:lime_candle[candles=2,lit=false]", + "minecraft:lime_candle[candles=3,lit=false,waterlogged=false]": "minecraft:lime_candle[candles=2,lit=false]", + "minecraft:lime_candle[candles=4,lit=true,waterlogged=true]": "minecraft:lime_candle[candles=3,lit=true]", + "minecraft:lime_candle[candles=4,lit=true,waterlogged=false]": "minecraft:lime_candle[candles=3,lit=true]", + "minecraft:lime_candle[candles=4,lit=false,waterlogged=true]": "minecraft:lime_candle[candles=3,lit=false]", + "minecraft:lime_candle[candles=4,lit=false,waterlogged=false]": "minecraft:lime_candle[candles=3,lit=false]", + "minecraft:pink_candle[candles=1,lit=true,waterlogged=true]": "minecraft:pink_candle[candles=0,lit=true]", + "minecraft:pink_candle[candles=1,lit=true,waterlogged=false]": "minecraft:pink_candle[candles=0,lit=true]", + "minecraft:pink_candle[candles=1,lit=false,waterlogged=true]": "minecraft:pink_candle[candles=0,lit=false]", + "minecraft:pink_candle[candles=1,lit=false,waterlogged=false]": "minecraft:pink_candle[candles=0,lit=false]", + "minecraft:pink_candle[candles=2,lit=true,waterlogged=true]": "minecraft:pink_candle[candles=1,lit=true]", + "minecraft:pink_candle[candles=2,lit=true,waterlogged=false]": "minecraft:pink_candle[candles=1,lit=true]", + "minecraft:pink_candle[candles=2,lit=false,waterlogged=true]": "minecraft:pink_candle[candles=1,lit=false]", + "minecraft:pink_candle[candles=2,lit=false,waterlogged=false]": "minecraft:pink_candle[candles=1,lit=false]", + "minecraft:pink_candle[candles=3,lit=true,waterlogged=true]": "minecraft:pink_candle[candles=2,lit=true]", + "minecraft:pink_candle[candles=3,lit=true,waterlogged=false]": "minecraft:pink_candle[candles=2,lit=true]", + "minecraft:pink_candle[candles=3,lit=false,waterlogged=true]": "minecraft:pink_candle[candles=2,lit=false]", + "minecraft:pink_candle[candles=3,lit=false,waterlogged=false]": "minecraft:pink_candle[candles=2,lit=false]", + "minecraft:pink_candle[candles=4,lit=true,waterlogged=true]": "minecraft:pink_candle[candles=3,lit=true]", + "minecraft:pink_candle[candles=4,lit=true,waterlogged=false]": "minecraft:pink_candle[candles=3,lit=true]", + "minecraft:pink_candle[candles=4,lit=false,waterlogged=true]": "minecraft:pink_candle[candles=3,lit=false]", + "minecraft:pink_candle[candles=4,lit=false,waterlogged=false]": "minecraft:pink_candle[candles=3,lit=false]", + "minecraft:gray_candle[candles=1,lit=true,waterlogged=true]": "minecraft:gray_candle[candles=0,lit=true]", + "minecraft:gray_candle[candles=1,lit=true,waterlogged=false]": "minecraft:gray_candle[candles=0,lit=true]", + "minecraft:gray_candle[candles=1,lit=false,waterlogged=true]": "minecraft:gray_candle[candles=0,lit=false]", + "minecraft:gray_candle[candles=1,lit=false,waterlogged=false]": "minecraft:gray_candle[candles=0,lit=false]", + "minecraft:gray_candle[candles=2,lit=true,waterlogged=true]": "minecraft:gray_candle[candles=1,lit=true]", + "minecraft:gray_candle[candles=2,lit=true,waterlogged=false]": "minecraft:gray_candle[candles=1,lit=true]", + "minecraft:gray_candle[candles=2,lit=false,waterlogged=true]": "minecraft:gray_candle[candles=1,lit=false]", + "minecraft:gray_candle[candles=2,lit=false,waterlogged=false]": "minecraft:gray_candle[candles=1,lit=false]", + "minecraft:gray_candle[candles=3,lit=true,waterlogged=true]": "minecraft:gray_candle[candles=2,lit=true]", + "minecraft:gray_candle[candles=3,lit=true,waterlogged=false]": "minecraft:gray_candle[candles=2,lit=true]", + "minecraft:gray_candle[candles=3,lit=false,waterlogged=true]": "minecraft:gray_candle[candles=2,lit=false]", + "minecraft:gray_candle[candles=3,lit=false,waterlogged=false]": "minecraft:gray_candle[candles=2,lit=false]", + "minecraft:gray_candle[candles=4,lit=true,waterlogged=true]": "minecraft:gray_candle[candles=3,lit=true]", + "minecraft:gray_candle[candles=4,lit=true,waterlogged=false]": "minecraft:gray_candle[candles=3,lit=true]", + "minecraft:gray_candle[candles=4,lit=false,waterlogged=true]": "minecraft:gray_candle[candles=3,lit=false]", + "minecraft:gray_candle[candles=4,lit=false,waterlogged=false]": "minecraft:gray_candle[candles=3,lit=false]", + "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=true]": "minecraft:light_gray_candle[candles=0,lit=true]", + "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=false]": "minecraft:light_gray_candle[candles=0,lit=true]", + "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true]": "minecraft:light_gray_candle[candles=0,lit=false]", + "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false]": "minecraft:light_gray_candle[candles=0,lit=false]", + "minecraft:light_gray_candle[candles=2,lit=true,waterlogged=true]": "minecraft:light_gray_candle[candles=1,lit=true]", + "minecraft:light_gray_candle[candles=2,lit=true,waterlogged=false]": "minecraft:light_gray_candle[candles=1,lit=true]", + "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true]": "minecraft:light_gray_candle[candles=1,lit=false]", + "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false]": "minecraft:light_gray_candle[candles=1,lit=false]", + "minecraft:light_gray_candle[candles=3,lit=true,waterlogged=true]": "minecraft:light_gray_candle[candles=2,lit=true]", + "minecraft:light_gray_candle[candles=3,lit=true,waterlogged=false]": "minecraft:light_gray_candle[candles=2,lit=true]", + "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true]": "minecraft:light_gray_candle[candles=2,lit=false]", + "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false]": "minecraft:light_gray_candle[candles=2,lit=false]", + "minecraft:light_gray_candle[candles=4,lit=true,waterlogged=true]": "minecraft:light_gray_candle[candles=3,lit=true]", + "minecraft:light_gray_candle[candles=4,lit=true,waterlogged=false]": "minecraft:light_gray_candle[candles=3,lit=true]", + "minecraft:light_gray_candle[candles=4,lit=false,waterlogged=true]": "minecraft:light_gray_candle[candles=3,lit=false]", + "minecraft:light_gray_candle[candles=4,lit=false,waterlogged=false]": "minecraft:light_gray_candle[candles=3,lit=false]", + "minecraft:cyan_candle[candles=1,lit=true,waterlogged=true]": "minecraft:cyan_candle[candles=0,lit=true]", + "minecraft:cyan_candle[candles=1,lit=true,waterlogged=false]": "minecraft:cyan_candle[candles=0,lit=true]", + "minecraft:cyan_candle[candles=1,lit=false,waterlogged=true]": "minecraft:cyan_candle[candles=0,lit=false]", + "minecraft:cyan_candle[candles=1,lit=false,waterlogged=false]": "minecraft:cyan_candle[candles=0,lit=false]", + "minecraft:cyan_candle[candles=2,lit=true,waterlogged=true]": "minecraft:cyan_candle[candles=1,lit=true]", + "minecraft:cyan_candle[candles=2,lit=true,waterlogged=false]": "minecraft:cyan_candle[candles=1,lit=true]", + "minecraft:cyan_candle[candles=2,lit=false,waterlogged=true]": "minecraft:cyan_candle[candles=1,lit=false]", + "minecraft:cyan_candle[candles=2,lit=false,waterlogged=false]": "minecraft:cyan_candle[candles=1,lit=false]", + "minecraft:cyan_candle[candles=3,lit=true,waterlogged=true]": "minecraft:cyan_candle[candles=2,lit=true]", + "minecraft:cyan_candle[candles=3,lit=true,waterlogged=false]": "minecraft:cyan_candle[candles=2,lit=true]", + "minecraft:cyan_candle[candles=3,lit=false,waterlogged=true]": "minecraft:cyan_candle[candles=2,lit=false]", + "minecraft:cyan_candle[candles=3,lit=false,waterlogged=false]": "minecraft:cyan_candle[candles=2,lit=false]", + "minecraft:cyan_candle[candles=4,lit=true,waterlogged=true]": "minecraft:cyan_candle[candles=3,lit=true]", + "minecraft:cyan_candle[candles=4,lit=true,waterlogged=false]": "minecraft:cyan_candle[candles=3,lit=true]", + "minecraft:cyan_candle[candles=4,lit=false,waterlogged=true]": "minecraft:cyan_candle[candles=3,lit=false]", + "minecraft:cyan_candle[candles=4,lit=false,waterlogged=false]": "minecraft:cyan_candle[candles=3,lit=false]", + "minecraft:purple_candle[candles=1,lit=true,waterlogged=true]": "minecraft:purple_candle[candles=0,lit=true]", + "minecraft:purple_candle[candles=1,lit=true,waterlogged=false]": "minecraft:purple_candle[candles=0,lit=true]", + "minecraft:purple_candle[candles=1,lit=false,waterlogged=true]": "minecraft:purple_candle[candles=0,lit=false]", + "minecraft:purple_candle[candles=1,lit=false,waterlogged=false]": "minecraft:purple_candle[candles=0,lit=false]", + "minecraft:purple_candle[candles=2,lit=true,waterlogged=true]": "minecraft:purple_candle[candles=1,lit=true]", + "minecraft:purple_candle[candles=2,lit=true,waterlogged=false]": "minecraft:purple_candle[candles=1,lit=true]", + "minecraft:purple_candle[candles=2,lit=false,waterlogged=true]": "minecraft:purple_candle[candles=1,lit=false]", + "minecraft:purple_candle[candles=2,lit=false,waterlogged=false]": "minecraft:purple_candle[candles=1,lit=false]", + "minecraft:purple_candle[candles=3,lit=true,waterlogged=true]": "minecraft:purple_candle[candles=2,lit=true]", + "minecraft:purple_candle[candles=3,lit=true,waterlogged=false]": "minecraft:purple_candle[candles=2,lit=true]", + "minecraft:purple_candle[candles=3,lit=false,waterlogged=true]": "minecraft:purple_candle[candles=2,lit=false]", + "minecraft:purple_candle[candles=3,lit=false,waterlogged=false]": "minecraft:purple_candle[candles=2,lit=false]", + "minecraft:purple_candle[candles=4,lit=true,waterlogged=true]": "minecraft:purple_candle[candles=3,lit=true]", + "minecraft:purple_candle[candles=4,lit=true,waterlogged=false]": "minecraft:purple_candle[candles=3,lit=true]", + "minecraft:purple_candle[candles=4,lit=false,waterlogged=true]": "minecraft:purple_candle[candles=3,lit=false]", + "minecraft:purple_candle[candles=4,lit=false,waterlogged=false]": "minecraft:purple_candle[candles=3,lit=false]", + "minecraft:blue_candle[candles=1,lit=true,waterlogged=true]": "minecraft:blue_candle[candles=0,lit=true]", + "minecraft:blue_candle[candles=1,lit=true,waterlogged=false]": "minecraft:blue_candle[candles=0,lit=true]", + "minecraft:blue_candle[candles=1,lit=false,waterlogged=true]": "minecraft:blue_candle[candles=0,lit=false]", + "minecraft:blue_candle[candles=1,lit=false,waterlogged=false]": "minecraft:blue_candle[candles=0,lit=false]", + "minecraft:blue_candle[candles=2,lit=true,waterlogged=true]": "minecraft:blue_candle[candles=1,lit=true]", + "minecraft:blue_candle[candles=2,lit=true,waterlogged=false]": "minecraft:blue_candle[candles=1,lit=true]", + "minecraft:blue_candle[candles=2,lit=false,waterlogged=true]": "minecraft:blue_candle[candles=1,lit=false]", + "minecraft:blue_candle[candles=2,lit=false,waterlogged=false]": "minecraft:blue_candle[candles=1,lit=false]", + "minecraft:blue_candle[candles=3,lit=true,waterlogged=true]": "minecraft:blue_candle[candles=2,lit=true]", + "minecraft:blue_candle[candles=3,lit=true,waterlogged=false]": "minecraft:blue_candle[candles=2,lit=true]", + "minecraft:blue_candle[candles=3,lit=false,waterlogged=true]": "minecraft:blue_candle[candles=2,lit=false]", + "minecraft:blue_candle[candles=3,lit=false,waterlogged=false]": "minecraft:blue_candle[candles=2,lit=false]", + "minecraft:blue_candle[candles=4,lit=true,waterlogged=true]": "minecraft:blue_candle[candles=3,lit=true]", + "minecraft:blue_candle[candles=4,lit=true,waterlogged=false]": "minecraft:blue_candle[candles=3,lit=true]", + "minecraft:blue_candle[candles=4,lit=false,waterlogged=true]": "minecraft:blue_candle[candles=3,lit=false]", + "minecraft:blue_candle[candles=4,lit=false,waterlogged=false]": "minecraft:blue_candle[candles=3,lit=false]", + "minecraft:brown_candle[candles=1,lit=true,waterlogged=true]": "minecraft:brown_candle[candles=0,lit=true]", + "minecraft:brown_candle[candles=1,lit=true,waterlogged=false]": "minecraft:brown_candle[candles=0,lit=true]", + "minecraft:brown_candle[candles=1,lit=false,waterlogged=true]": "minecraft:brown_candle[candles=0,lit=false]", + "minecraft:brown_candle[candles=1,lit=false,waterlogged=false]": "minecraft:brown_candle[candles=0,lit=false]", + "minecraft:brown_candle[candles=2,lit=true,waterlogged=true]": "minecraft:brown_candle[candles=1,lit=true]", + "minecraft:brown_candle[candles=2,lit=true,waterlogged=false]": "minecraft:brown_candle[candles=1,lit=true]", + "minecraft:brown_candle[candles=2,lit=false,waterlogged=true]": "minecraft:brown_candle[candles=1,lit=false]", + "minecraft:brown_candle[candles=2,lit=false,waterlogged=false]": "minecraft:brown_candle[candles=1,lit=false]", + "minecraft:brown_candle[candles=3,lit=true,waterlogged=true]": "minecraft:brown_candle[candles=2,lit=true]", + "minecraft:brown_candle[candles=3,lit=true,waterlogged=false]": "minecraft:brown_candle[candles=2,lit=true]", + "minecraft:brown_candle[candles=3,lit=false,waterlogged=true]": "minecraft:brown_candle[candles=2,lit=false]", + "minecraft:brown_candle[candles=3,lit=false,waterlogged=false]": "minecraft:brown_candle[candles=2,lit=false]", + "minecraft:brown_candle[candles=4,lit=true,waterlogged=true]": "minecraft:brown_candle[candles=3,lit=true]", + "minecraft:brown_candle[candles=4,lit=true,waterlogged=false]": "minecraft:brown_candle[candles=3,lit=true]", + "minecraft:brown_candle[candles=4,lit=false,waterlogged=true]": "minecraft:brown_candle[candles=3,lit=false]", + "minecraft:brown_candle[candles=4,lit=false,waterlogged=false]": "minecraft:brown_candle[candles=3,lit=false]", + "minecraft:green_candle[candles=1,lit=true,waterlogged=true]": "minecraft:green_candle[candles=0,lit=true]", + "minecraft:green_candle[candles=1,lit=true,waterlogged=false]": "minecraft:green_candle[candles=0,lit=true]", + "minecraft:green_candle[candles=1,lit=false,waterlogged=true]": "minecraft:green_candle[candles=0,lit=false]", + "minecraft:green_candle[candles=1,lit=false,waterlogged=false]": "minecraft:green_candle[candles=0,lit=false]", + "minecraft:green_candle[candles=2,lit=true,waterlogged=true]": "minecraft:green_candle[candles=1,lit=true]", + "minecraft:green_candle[candles=2,lit=true,waterlogged=false]": "minecraft:green_candle[candles=1,lit=true]", + "minecraft:green_candle[candles=2,lit=false,waterlogged=true]": "minecraft:green_candle[candles=1,lit=false]", + "minecraft:green_candle[candles=2,lit=false,waterlogged=false]": "minecraft:green_candle[candles=1,lit=false]", + "minecraft:green_candle[candles=3,lit=true,waterlogged=true]": "minecraft:green_candle[candles=2,lit=true]", + "minecraft:green_candle[candles=3,lit=true,waterlogged=false]": "minecraft:green_candle[candles=2,lit=true]", + "minecraft:green_candle[candles=3,lit=false,waterlogged=true]": "minecraft:green_candle[candles=2,lit=false]", + "minecraft:green_candle[candles=3,lit=false,waterlogged=false]": "minecraft:green_candle[candles=2,lit=false]", + "minecraft:green_candle[candles=4,lit=true,waterlogged=true]": "minecraft:green_candle[candles=3,lit=true]", + "minecraft:green_candle[candles=4,lit=true,waterlogged=false]": "minecraft:green_candle[candles=3,lit=true]", + "minecraft:green_candle[candles=4,lit=false,waterlogged=true]": "minecraft:green_candle[candles=3,lit=false]", + "minecraft:green_candle[candles=4,lit=false,waterlogged=false]": "minecraft:green_candle[candles=3,lit=false]", + "minecraft:red_candle[candles=1,lit=true,waterlogged=true]": "minecraft:red_candle[candles=0,lit=true]", + "minecraft:red_candle[candles=1,lit=true,waterlogged=false]": "minecraft:red_candle[candles=0,lit=true]", + "minecraft:red_candle[candles=1,lit=false,waterlogged=true]": "minecraft:red_candle[candles=0,lit=false]", + "minecraft:red_candle[candles=1,lit=false,waterlogged=false]": "minecraft:red_candle[candles=0,lit=false]", + "minecraft:red_candle[candles=2,lit=true,waterlogged=true]": "minecraft:red_candle[candles=1,lit=true]", + "minecraft:red_candle[candles=2,lit=true,waterlogged=false]": "minecraft:red_candle[candles=1,lit=true]", + "minecraft:red_candle[candles=2,lit=false,waterlogged=true]": "minecraft:red_candle[candles=1,lit=false]", + "minecraft:red_candle[candles=2,lit=false,waterlogged=false]": "minecraft:red_candle[candles=1,lit=false]", + "minecraft:red_candle[candles=3,lit=true,waterlogged=true]": "minecraft:red_candle[candles=2,lit=true]", + "minecraft:red_candle[candles=3,lit=true,waterlogged=false]": "minecraft:red_candle[candles=2,lit=true]", + "minecraft:red_candle[candles=3,lit=false,waterlogged=true]": "minecraft:red_candle[candles=2,lit=false]", + "minecraft:red_candle[candles=3,lit=false,waterlogged=false]": "minecraft:red_candle[candles=2,lit=false]", + "minecraft:red_candle[candles=4,lit=true,waterlogged=true]": "minecraft:red_candle[candles=3,lit=true]", + "minecraft:red_candle[candles=4,lit=true,waterlogged=false]": "minecraft:red_candle[candles=3,lit=true]", + "minecraft:red_candle[candles=4,lit=false,waterlogged=true]": "minecraft:red_candle[candles=3,lit=false]", + "minecraft:red_candle[candles=4,lit=false,waterlogged=false]": "minecraft:red_candle[candles=3,lit=false]", + "minecraft:black_candle[candles=1,lit=true,waterlogged=true]": "minecraft:black_candle[candles=0,lit=true]", + "minecraft:black_candle[candles=1,lit=true,waterlogged=false]": "minecraft:black_candle[candles=0,lit=true]", + "minecraft:black_candle[candles=1,lit=false,waterlogged=true]": "minecraft:black_candle[candles=0,lit=false]", + "minecraft:black_candle[candles=1,lit=false,waterlogged=false]": "minecraft:black_candle[candles=0,lit=false]", + "minecraft:black_candle[candles=2,lit=true,waterlogged=true]": "minecraft:black_candle[candles=1,lit=true]", + "minecraft:black_candle[candles=2,lit=true,waterlogged=false]": "minecraft:black_candle[candles=1,lit=true]", + "minecraft:black_candle[candles=2,lit=false,waterlogged=true]": "minecraft:black_candle[candles=1,lit=false]", + "minecraft:black_candle[candles=2,lit=false,waterlogged=false]": "minecraft:black_candle[candles=1,lit=false]", + "minecraft:black_candle[candles=3,lit=true,waterlogged=true]": "minecraft:black_candle[candles=2,lit=true]", + "minecraft:black_candle[candles=3,lit=true,waterlogged=false]": "minecraft:black_candle[candles=2,lit=true]", + "minecraft:black_candle[candles=3,lit=false,waterlogged=true]": "minecraft:black_candle[candles=2,lit=false]", + "minecraft:black_candle[candles=3,lit=false,waterlogged=false]": "minecraft:black_candle[candles=2,lit=false]", + "minecraft:black_candle[candles=4,lit=true,waterlogged=true]": "minecraft:black_candle[candles=3,lit=true]", + "minecraft:black_candle[candles=4,lit=true,waterlogged=false]": "minecraft:black_candle[candles=3,lit=true]", + "minecraft:black_candle[candles=4,lit=false,waterlogged=true]": "minecraft:black_candle[candles=3,lit=false]", + "minecraft:black_candle[candles=4,lit=false,waterlogged=false]": "minecraft:black_candle[candles=3,lit=false]", + "minecraft:candle_cake[lit=true]": "minecraft:candle_cake[lit=true]", + "minecraft:candle_cake[lit=false]": "minecraft:candle_cake[lit=false]", + "minecraft:white_candle_cake[lit=true]": "minecraft:white_candle_cake[lit=true]", + "minecraft:white_candle_cake[lit=false]": "minecraft:white_candle_cake[lit=false]", + "minecraft:orange_candle_cake[lit=true]": "minecraft:orange_candle_cake[lit=true]", + "minecraft:orange_candle_cake[lit=false]": "minecraft:orange_candle_cake[lit=false]", + "minecraft:magenta_candle_cake[lit=true]": "minecraft:magenta_candle_cake[lit=true]", + "minecraft:magenta_candle_cake[lit=false]": "minecraft:magenta_candle_cake[lit=false]", + "minecraft:light_blue_candle_cake[lit=true]": "minecraft:light_blue_candle_cake[lit=true]", + "minecraft:light_blue_candle_cake[lit=false]": "minecraft:light_blue_candle_cake[lit=false]", + "minecraft:yellow_candle_cake[lit=true]": "minecraft:yellow_candle_cake[lit=true]", + "minecraft:yellow_candle_cake[lit=false]": "minecraft:yellow_candle_cake[lit=false]", + "minecraft:lime_candle_cake[lit=true]": "minecraft:lime_candle_cake[lit=true]", + "minecraft:lime_candle_cake[lit=false]": "minecraft:lime_candle_cake[lit=false]", + "minecraft:pink_candle_cake[lit=true]": "minecraft:pink_candle_cake[lit=true]", + "minecraft:pink_candle_cake[lit=false]": "minecraft:pink_candle_cake[lit=false]", + "minecraft:gray_candle_cake[lit=true]": "minecraft:gray_candle_cake[lit=true]", + "minecraft:gray_candle_cake[lit=false]": "minecraft:gray_candle_cake[lit=false]", + "minecraft:light_gray_candle_cake[lit=true]": "minecraft:light_gray_candle_cake[lit=true]", + "minecraft:light_gray_candle_cake[lit=false]": "minecraft:light_gray_candle_cake[lit=false]", + "minecraft:cyan_candle_cake[lit=true]": "minecraft:cyan_candle_cake[lit=true]", + "minecraft:cyan_candle_cake[lit=false]": "minecraft:cyan_candle_cake[lit=false]", + "minecraft:purple_candle_cake[lit=true]": "minecraft:purple_candle_cake[lit=true]", + "minecraft:purple_candle_cake[lit=false]": "minecraft:purple_candle_cake[lit=false]", + "minecraft:blue_candle_cake[lit=true]": "minecraft:blue_candle_cake[lit=true]", + "minecraft:blue_candle_cake[lit=false]": "minecraft:blue_candle_cake[lit=false]", + "minecraft:brown_candle_cake[lit=true]": "minecraft:brown_candle_cake[lit=true]", + "minecraft:brown_candle_cake[lit=false]": "minecraft:brown_candle_cake[lit=false]", + "minecraft:green_candle_cake[lit=true]": "minecraft:green_candle_cake[lit=true]", + "minecraft:green_candle_cake[lit=false]": "minecraft:green_candle_cake[lit=false]", + "minecraft:red_candle_cake[lit=true]": "minecraft:red_candle_cake[lit=true]", + "minecraft:red_candle_cake[lit=false]": "minecraft:red_candle_cake[lit=false]", + "minecraft:black_candle_cake[lit=true]": "minecraft:black_candle_cake[lit=true]", + "minecraft:black_candle_cake[lit=false]": "minecraft:black_candle_cake[lit=false]", + "minecraft:amethyst_block[]": "minecraft:amethyst_block[]", + "minecraft:budding_amethyst[]": "minecraft:budding_amethyst[]", + "minecraft:amethyst_cluster[facing=north,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=north]", + "minecraft:amethyst_cluster[facing=north,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=north]", + "minecraft:amethyst_cluster[facing=east,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=east]", + "minecraft:amethyst_cluster[facing=east,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=east]", + "minecraft:amethyst_cluster[facing=south,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=south]", + "minecraft:amethyst_cluster[facing=south,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=south]", + "minecraft:amethyst_cluster[facing=west,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=west]", + "minecraft:amethyst_cluster[facing=west,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=west]", + "minecraft:amethyst_cluster[facing=up,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=up]", + "minecraft:amethyst_cluster[facing=up,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=up]", + "minecraft:amethyst_cluster[facing=down,waterlogged=true]": "minecraft:amethyst_cluster[minecraft:block_face=down]", + "minecraft:amethyst_cluster[facing=down,waterlogged=false]": "minecraft:amethyst_cluster[minecraft:block_face=down]", + "minecraft:large_amethyst_bud[facing=north,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=north]", + "minecraft:large_amethyst_bud[facing=north,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=north]", + "minecraft:large_amethyst_bud[facing=east,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=east]", + "minecraft:large_amethyst_bud[facing=east,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=east]", + "minecraft:large_amethyst_bud[facing=south,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=south]", + "minecraft:large_amethyst_bud[facing=south,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=south]", + "minecraft:large_amethyst_bud[facing=west,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=west]", + "minecraft:large_amethyst_bud[facing=west,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=west]", + "minecraft:large_amethyst_bud[facing=up,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=up]", + "minecraft:large_amethyst_bud[facing=up,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=up]", + "minecraft:large_amethyst_bud[facing=down,waterlogged=true]": "minecraft:large_amethyst_bud[minecraft:block_face=down]", + "minecraft:large_amethyst_bud[facing=down,waterlogged=false]": "minecraft:large_amethyst_bud[minecraft:block_face=down]", + "minecraft:medium_amethyst_bud[facing=north,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=north]", + "minecraft:medium_amethyst_bud[facing=north,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=north]", + "minecraft:medium_amethyst_bud[facing=east,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=east]", + "minecraft:medium_amethyst_bud[facing=east,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=east]", + "minecraft:medium_amethyst_bud[facing=south,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=south]", + "minecraft:medium_amethyst_bud[facing=south,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=south]", + "minecraft:medium_amethyst_bud[facing=west,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=west]", + "minecraft:medium_amethyst_bud[facing=west,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=west]", + "minecraft:medium_amethyst_bud[facing=up,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=up]", + "minecraft:medium_amethyst_bud[facing=up,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=up]", + "minecraft:medium_amethyst_bud[facing=down,waterlogged=true]": "minecraft:medium_amethyst_bud[minecraft:block_face=down]", + "minecraft:medium_amethyst_bud[facing=down,waterlogged=false]": "minecraft:medium_amethyst_bud[minecraft:block_face=down]", + "minecraft:small_amethyst_bud[facing=north,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=north]", + "minecraft:small_amethyst_bud[facing=north,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=north]", + "minecraft:small_amethyst_bud[facing=east,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=east]", + "minecraft:small_amethyst_bud[facing=east,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=east]", + "minecraft:small_amethyst_bud[facing=south,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=south]", + "minecraft:small_amethyst_bud[facing=south,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=south]", + "minecraft:small_amethyst_bud[facing=west,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=west]", + "minecraft:small_amethyst_bud[facing=west,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=west]", + "minecraft:small_amethyst_bud[facing=up,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=up]", + "minecraft:small_amethyst_bud[facing=up,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=up]", + "minecraft:small_amethyst_bud[facing=down,waterlogged=true]": "minecraft:small_amethyst_bud[minecraft:block_face=down]", + "minecraft:small_amethyst_bud[facing=down,waterlogged=false]": "minecraft:small_amethyst_bud[minecraft:block_face=down]", + "minecraft:tuff[]": "minecraft:tuff[]", + "minecraft:tuff_slab[type=top,waterlogged=true]": "minecraft:tuff_slab[minecraft:vertical_half=top]", + "minecraft:tuff_slab[type=top,waterlogged=false]": "minecraft:tuff_slab[minecraft:vertical_half=top]", + "minecraft:tuff_slab[type=bottom,waterlogged=true]": "minecraft:tuff_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_slab[type=bottom,waterlogged=false]": "minecraft:tuff_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_slab[type=double,waterlogged=true]": "minecraft:tuff_double_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_slab[type=double,waterlogged=false]": "minecraft:tuff_double_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff[]": "minecraft:polished_tuff[]", + "minecraft:polished_tuff_slab[type=top,waterlogged=true]": "minecraft:polished_tuff_slab[minecraft:vertical_half=top]", + "minecraft:polished_tuff_slab[type=top,waterlogged=false]": "minecraft:polished_tuff_slab[minecraft:vertical_half=top]", + "minecraft:polished_tuff_slab[type=bottom,waterlogged=true]": "minecraft:polished_tuff_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_tuff_slab[type=bottom,waterlogged=false]": "minecraft:polished_tuff_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_tuff_slab[type=double,waterlogged=true]": "minecraft:polished_tuff_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_tuff_slab[type=double,waterlogged=false]": "minecraft:polished_tuff_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_tuff_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_tuff_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:chiseled_tuff[]": "minecraft:chiseled_tuff[]", + "minecraft:tuff_bricks[]": "minecraft:tuff_bricks[]", + "minecraft:tuff_brick_slab[type=top,waterlogged=true]": "minecraft:tuff_brick_slab[minecraft:vertical_half=top]", + "minecraft:tuff_brick_slab[type=top,waterlogged=false]": "minecraft:tuff_brick_slab[minecraft:vertical_half=top]", + "minecraft:tuff_brick_slab[type=bottom,waterlogged=true]": "minecraft:tuff_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_brick_slab[type=bottom,waterlogged=false]": "minecraft:tuff_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_brick_slab[type=double,waterlogged=true]": "minecraft:tuff_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_brick_slab[type=double,waterlogged=false]": "minecraft:tuff_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:tuff_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:tuff_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:chiseled_tuff_bricks[]": "minecraft:chiseled_tuff_bricks[]", + "minecraft:calcite[]": "minecraft:calcite[]", + "minecraft:tinted_glass[]": "minecraft:tinted_glass[]", + "minecraft:powder_snow[]": "minecraft:powder_snow[]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=0]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=1]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:sculk_sensor[sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=north,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=south,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=west,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=inactive,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=inactive,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=0]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=active,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=active,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=1]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": "minecraft:calibrated_sculk_sensor[minecraft:cardinal_direction=east,sculk_sensor_phase=2]", + "minecraft:sculk[]": "minecraft:sculk[]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=63]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=55]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=63]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=55]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=61]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=53]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=61]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=53]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=59]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=51]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=59]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=51]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=57]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=49]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=57]", + "minecraft:sculk_vein[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=49]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=47]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=39]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=47]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=39]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=45]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=37]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=45]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=37]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=43]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=35]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=43]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=35]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=41]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=33]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=41]", + "minecraft:sculk_vein[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=33]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=31]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=23]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=31]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=23]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=29]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=21]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=29]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=21]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=27]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=19]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=27]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=19]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=25]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=17]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=25]", + "minecraft:sculk_vein[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=17]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=15]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=7]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=15]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=7]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=13]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=5]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=13]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=5]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=11]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=3]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=11]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=3]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=9]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=1]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=9]", + "minecraft:sculk_vein[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=1]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=62]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=54]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=62]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=54]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=60]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=52]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=60]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=52]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=58]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=50]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=58]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=50]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=56]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=48]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=56]", + "minecraft:sculk_vein[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=48]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=46]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=38]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=46]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=38]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=44]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=36]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=44]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=36]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=42]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=34]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=42]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=34]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=40]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=32]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=40]", + "minecraft:sculk_vein[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=32]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=30]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=22]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=30]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=22]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=28]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=20]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=28]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=20]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=26]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=18]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=26]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=18]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=24]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=16]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=24]", + "minecraft:sculk_vein[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=16]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=14]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=6]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=14]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=6]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=12]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=4]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=12]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=4]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=10]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=2]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=10]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=2]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=8]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=0]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": "minecraft:sculk_vein[multi_face_direction_bits=8]", + "minecraft:sculk_vein[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": "minecraft:sculk_vein[multi_face_direction_bits=0]", + "minecraft:sculk_catalyst[bloom=true]": "minecraft:sculk_catalyst[bloom=true]", + "minecraft:sculk_catalyst[bloom=false]": "minecraft:sculk_catalyst[bloom=false]", + "minecraft:sculk_shrieker[can_summon=true,shrieking=true,waterlogged=true]": "minecraft:sculk_shrieker[active=true,can_summon=true]", + "minecraft:sculk_shrieker[can_summon=true,shrieking=true,waterlogged=false]": "minecraft:sculk_shrieker[active=true,can_summon=true]", + "minecraft:sculk_shrieker[can_summon=true,shrieking=false,waterlogged=true]": "minecraft:sculk_shrieker[active=false,can_summon=true]", + "minecraft:sculk_shrieker[can_summon=true,shrieking=false,waterlogged=false]": "minecraft:sculk_shrieker[active=false,can_summon=true]", + "minecraft:sculk_shrieker[can_summon=false,shrieking=true,waterlogged=true]": "minecraft:sculk_shrieker[active=true,can_summon=false]", + "minecraft:sculk_shrieker[can_summon=false,shrieking=true,waterlogged=false]": "minecraft:sculk_shrieker[active=true,can_summon=false]", + "minecraft:sculk_shrieker[can_summon=false,shrieking=false,waterlogged=true]": "minecraft:sculk_shrieker[active=false,can_summon=false]", + "minecraft:sculk_shrieker[can_summon=false,shrieking=false,waterlogged=false]": "minecraft:sculk_shrieker[active=false,can_summon=false]", + "minecraft:copper_block[]": "minecraft:copper_block[]", + "minecraft:exposed_copper[]": "minecraft:exposed_copper[]", + "minecraft:weathered_copper[]": "minecraft:weathered_copper[]", + "minecraft:oxidized_copper[]": "minecraft:oxidized_copper[]", + "minecraft:copper_ore[]": "minecraft:copper_ore[]", + "minecraft:deepslate_copper_ore[]": "minecraft:deepslate_copper_ore[]", + "minecraft:oxidized_cut_copper[]": "minecraft:oxidized_cut_copper[]", + "minecraft:weathered_cut_copper[]": "minecraft:weathered_cut_copper[]", + "minecraft:exposed_cut_copper[]": "minecraft:exposed_cut_copper[]", + "minecraft:cut_copper[]": "minecraft:cut_copper[]", + "minecraft:oxidized_chiseled_copper[]": "minecraft:oxidized_chiseled_copper[]", + "minecraft:weathered_chiseled_copper[]": "minecraft:weathered_chiseled_copper[]", + "minecraft:exposed_chiseled_copper[]": "minecraft:exposed_chiseled_copper[]", + "minecraft:chiseled_copper[]": "minecraft:chiseled_copper[]", + "minecraft:waxed_oxidized_chiseled_copper[]": "minecraft:waxed_oxidized_chiseled_copper[]", + "minecraft:waxed_weathered_chiseled_copper[]": "minecraft:waxed_weathered_chiseled_copper[]", + "minecraft:waxed_exposed_chiseled_copper[]": "minecraft:waxed_exposed_chiseled_copper[]", + "minecraft:waxed_chiseled_copper[]": "minecraft:waxed_chiseled_copper[]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:oxidized_cut_copper_slab[type=top,waterlogged=true]": "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:oxidized_cut_copper_slab[type=top,waterlogged=false]": "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:oxidized_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:oxidized_cut_copper_slab[type=double,waterlogged=true]": "minecraft:oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:oxidized_cut_copper_slab[type=double,waterlogged=false]": "minecraft:oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:weathered_cut_copper_slab[type=top,waterlogged=true]": "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:weathered_cut_copper_slab[type=top,waterlogged=false]": "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:weathered_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:weathered_cut_copper_slab[type=double,waterlogged=true]": "minecraft:weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:weathered_cut_copper_slab[type=double,waterlogged=false]": "minecraft:weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:exposed_cut_copper_slab[type=top,waterlogged=true]": "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:exposed_cut_copper_slab[type=top,waterlogged=false]": "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:exposed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:exposed_cut_copper_slab[type=double,waterlogged=true]": "minecraft:exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:exposed_cut_copper_slab[type=double,waterlogged=false]": "minecraft:exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_copper_slab[type=top,waterlogged=true]": "minecraft:cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:cut_copper_slab[type=top,waterlogged=false]": "minecraft:cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_copper_slab[type=double,waterlogged=true]": "minecraft:double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:cut_copper_slab[type=double,waterlogged=false]": "minecraft:double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_copper_block[]": "minecraft:waxed_copper[]", + "minecraft:waxed_weathered_copper[]": "minecraft:waxed_weathered_copper[]", + "minecraft:waxed_exposed_copper[]": "minecraft:waxed_exposed_copper[]", + "minecraft:waxed_oxidized_copper[]": "minecraft:waxed_oxidized_copper[]", + "minecraft:waxed_oxidized_cut_copper[]": "minecraft:waxed_oxidized_cut_copper[]", + "minecraft:waxed_weathered_cut_copper[]": "minecraft:waxed_weathered_cut_copper[]", + "minecraft:waxed_exposed_cut_copper[]": "minecraft:waxed_exposed_cut_copper[]", + "minecraft:waxed_cut_copper[]": "minecraft:waxed_cut_copper[]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:waxed_cut_copper_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:waxed_oxidized_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=true]": "minecraft:waxed_oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=false]": "minecraft:waxed_oxidized_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:waxed_weathered_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=true]": "minecraft:waxed_weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=false]": "minecraft:waxed_weathered_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:waxed_exposed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=true]": "minecraft:waxed_exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=false]": "minecraft:waxed_exposed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_cut_copper_slab[type=top,waterlogged=true]": "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_cut_copper_slab[type=top,waterlogged=false]": "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=top]", + "minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true]": "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false]": "minecraft:waxed_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_cut_copper_slab[type=double,waterlogged=true]": "minecraft:waxed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:waxed_cut_copper_slab[type=double,waterlogged=false]": "minecraft:waxed_double_cut_copper_slab[minecraft:vertical_half=bottom]", + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_exposed_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_oxidized_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=3,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=1,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=2,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=true]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=false,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=true,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": "minecraft:waxed_weathered_copper_door[direction=0,door_hinge_bit=true,open_bit=false,upper_block_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_exposed_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_oxidized_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=3,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=2,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=1,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=true]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=true,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": "minecraft:waxed_weathered_copper_trapdoor[direction=0,open_bit=false,upside_down_bit=false]", + "minecraft:copper_grate[waterlogged=true]": "minecraft:copper_grate[]", + "minecraft:copper_grate[waterlogged=false]": "minecraft:copper_grate[]", + "minecraft:exposed_copper_grate[waterlogged=true]": "minecraft:exposed_copper_grate[]", + "minecraft:exposed_copper_grate[waterlogged=false]": "minecraft:exposed_copper_grate[]", + "minecraft:weathered_copper_grate[waterlogged=true]": "minecraft:weathered_copper_grate[]", + "minecraft:weathered_copper_grate[waterlogged=false]": "minecraft:weathered_copper_grate[]", + "minecraft:oxidized_copper_grate[waterlogged=true]": "minecraft:oxidized_copper_grate[]", + "minecraft:oxidized_copper_grate[waterlogged=false]": "minecraft:oxidized_copper_grate[]", + "minecraft:waxed_copper_grate[waterlogged=true]": "minecraft:waxed_copper_grate[]", + "minecraft:waxed_copper_grate[waterlogged=false]": "minecraft:waxed_copper_grate[]", + "minecraft:waxed_exposed_copper_grate[waterlogged=true]": "minecraft:waxed_exposed_copper_grate[]", + "minecraft:waxed_exposed_copper_grate[waterlogged=false]": "minecraft:waxed_exposed_copper_grate[]", + "minecraft:waxed_weathered_copper_grate[waterlogged=true]": "minecraft:waxed_weathered_copper_grate[]", + "minecraft:waxed_weathered_copper_grate[waterlogged=false]": "minecraft:waxed_weathered_copper_grate[]", + "minecraft:waxed_oxidized_copper_grate[waterlogged=true]": "minecraft:waxed_oxidized_copper_grate[]", + "minecraft:waxed_oxidized_copper_grate[waterlogged=false]": "minecraft:waxed_oxidized_copper_grate[]", + "minecraft:copper_bulb[lit=true,powered=true]": "minecraft:copper_bulb[lit=true,powered_bit=true]", + "minecraft:copper_bulb[lit=true,powered=false]": "minecraft:copper_bulb[lit=true,powered_bit=false]", + "minecraft:copper_bulb[lit=false,powered=true]": "minecraft:copper_bulb[lit=false,powered_bit=true]", + "minecraft:copper_bulb[lit=false,powered=false]": "minecraft:copper_bulb[lit=false,powered_bit=false]", + "minecraft:exposed_copper_bulb[lit=true,powered=true]": "minecraft:exposed_copper_bulb[lit=true,powered_bit=true]", + "minecraft:exposed_copper_bulb[lit=true,powered=false]": "minecraft:exposed_copper_bulb[lit=true,powered_bit=false]", + "minecraft:exposed_copper_bulb[lit=false,powered=true]": "minecraft:exposed_copper_bulb[lit=false,powered_bit=true]", + "minecraft:exposed_copper_bulb[lit=false,powered=false]": "minecraft:exposed_copper_bulb[lit=false,powered_bit=false]", + "minecraft:weathered_copper_bulb[lit=true,powered=true]": "minecraft:weathered_copper_bulb[lit=true,powered_bit=true]", + "minecraft:weathered_copper_bulb[lit=true,powered=false]": "minecraft:weathered_copper_bulb[lit=true,powered_bit=false]", + "minecraft:weathered_copper_bulb[lit=false,powered=true]": "minecraft:weathered_copper_bulb[lit=false,powered_bit=true]", + "minecraft:weathered_copper_bulb[lit=false,powered=false]": "minecraft:weathered_copper_bulb[lit=false,powered_bit=false]", + "minecraft:oxidized_copper_bulb[lit=true,powered=true]": "minecraft:oxidized_copper_bulb[lit=true,powered_bit=true]", + "minecraft:oxidized_copper_bulb[lit=true,powered=false]": "minecraft:oxidized_copper_bulb[lit=true,powered_bit=false]", + "minecraft:oxidized_copper_bulb[lit=false,powered=true]": "minecraft:oxidized_copper_bulb[lit=false,powered_bit=true]", + "minecraft:oxidized_copper_bulb[lit=false,powered=false]": "minecraft:oxidized_copper_bulb[lit=false,powered_bit=false]", + "minecraft:waxed_copper_bulb[lit=true,powered=true]": "minecraft:waxed_copper_bulb[lit=true,powered_bit=true]", + "minecraft:waxed_copper_bulb[lit=true,powered=false]": "minecraft:waxed_copper_bulb[lit=true,powered_bit=false]", + "minecraft:waxed_copper_bulb[lit=false,powered=true]": "minecraft:waxed_copper_bulb[lit=false,powered_bit=true]", + "minecraft:waxed_copper_bulb[lit=false,powered=false]": "minecraft:waxed_copper_bulb[lit=false,powered_bit=false]", + "minecraft:waxed_exposed_copper_bulb[lit=true,powered=true]": "minecraft:waxed_exposed_copper_bulb[lit=true,powered_bit=true]", + "minecraft:waxed_exposed_copper_bulb[lit=true,powered=false]": "minecraft:waxed_exposed_copper_bulb[lit=true,powered_bit=false]", + "minecraft:waxed_exposed_copper_bulb[lit=false,powered=true]": "minecraft:waxed_exposed_copper_bulb[lit=false,powered_bit=true]", + "minecraft:waxed_exposed_copper_bulb[lit=false,powered=false]": "minecraft:waxed_exposed_copper_bulb[lit=false,powered_bit=false]", + "minecraft:waxed_weathered_copper_bulb[lit=true,powered=true]": "minecraft:waxed_weathered_copper_bulb[lit=true,powered_bit=true]", + "minecraft:waxed_weathered_copper_bulb[lit=true,powered=false]": "minecraft:waxed_weathered_copper_bulb[lit=true,powered_bit=false]", + "minecraft:waxed_weathered_copper_bulb[lit=false,powered=true]": "minecraft:waxed_weathered_copper_bulb[lit=false,powered_bit=true]", + "minecraft:waxed_weathered_copper_bulb[lit=false,powered=false]": "minecraft:waxed_weathered_copper_bulb[lit=false,powered_bit=false]", + "minecraft:waxed_oxidized_copper_bulb[lit=true,powered=true]": "minecraft:waxed_oxidized_copper_bulb[lit=true,powered_bit=true]", + "minecraft:waxed_oxidized_copper_bulb[lit=true,powered=false]": "minecraft:waxed_oxidized_copper_bulb[lit=true,powered_bit=false]", + "minecraft:waxed_oxidized_copper_bulb[lit=false,powered=true]": "minecraft:waxed_oxidized_copper_bulb[lit=false,powered_bit=true]", + "minecraft:waxed_oxidized_copper_bulb[lit=false,powered=false]": "minecraft:waxed_oxidized_copper_bulb[lit=false,powered_bit=false]", + "minecraft:lightning_rod[facing=north,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=2]", + "minecraft:lightning_rod[facing=north,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=2]", + "minecraft:lightning_rod[facing=north,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=2]", + "minecraft:lightning_rod[facing=north,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=2]", + "minecraft:lightning_rod[facing=east,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=5]", + "minecraft:lightning_rod[facing=east,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=5]", + "minecraft:lightning_rod[facing=east,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=5]", + "minecraft:lightning_rod[facing=east,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=5]", + "minecraft:lightning_rod[facing=south,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=3]", + "minecraft:lightning_rod[facing=south,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=3]", + "minecraft:lightning_rod[facing=south,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=3]", + "minecraft:lightning_rod[facing=south,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=3]", + "minecraft:lightning_rod[facing=west,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=4]", + "minecraft:lightning_rod[facing=west,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=4]", + "minecraft:lightning_rod[facing=west,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=4]", + "minecraft:lightning_rod[facing=west,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=4]", + "minecraft:lightning_rod[facing=up,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=1]", + "minecraft:lightning_rod[facing=up,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=1]", + "minecraft:lightning_rod[facing=up,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=1]", + "minecraft:lightning_rod[facing=up,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=1]", + "minecraft:lightning_rod[facing=down,powered=true,waterlogged=true]": "minecraft:lightning_rod[facing_direction=0]", + "minecraft:lightning_rod[facing=down,powered=true,waterlogged=false]": "minecraft:lightning_rod[facing_direction=0]", + "minecraft:lightning_rod[facing=down,powered=false,waterlogged=true]": "minecraft:lightning_rod[facing_direction=0]", + "minecraft:lightning_rod[facing=down,powered=false,waterlogged=false]": "minecraft:lightning_rod[facing_direction=0]", + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=false]", + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=false]", + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=true]", + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=merge,hanging=true]", + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=false]", + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=false]", + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=true]", + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=tip,hanging=true]", + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=false]", + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=false]", + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=true]", + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=frustum,hanging=true]", + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=false]", + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=false]", + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=true]", + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=middle,hanging=true]", + "minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=false]", + "minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=false]", + "minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true]": "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=true]", + "minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false]": "minecraft:pointed_dripstone[dripstone_thickness=base,hanging=true]", + "minecraft:dripstone_block[]": "minecraft:dripstone_block[]", + "minecraft:cave_vines[age=0,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=0]", + "minecraft:cave_vines[age=0,berries=false]": "minecraft:cave_vines[growing_plant_age=0]", + "minecraft:cave_vines[age=1,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=1]", + "minecraft:cave_vines[age=1,berries=false]": "minecraft:cave_vines[growing_plant_age=1]", + "minecraft:cave_vines[age=2,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=2]", + "minecraft:cave_vines[age=2,berries=false]": "minecraft:cave_vines[growing_plant_age=2]", + "minecraft:cave_vines[age=3,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=3]", + "minecraft:cave_vines[age=3,berries=false]": "minecraft:cave_vines[growing_plant_age=3]", + "minecraft:cave_vines[age=4,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=4]", + "minecraft:cave_vines[age=4,berries=false]": "minecraft:cave_vines[growing_plant_age=4]", + "minecraft:cave_vines[age=5,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=5]", + "minecraft:cave_vines[age=5,berries=false]": "minecraft:cave_vines[growing_plant_age=5]", + "minecraft:cave_vines[age=6,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=6]", + "minecraft:cave_vines[age=6,berries=false]": "minecraft:cave_vines[growing_plant_age=6]", + "minecraft:cave_vines[age=7,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=7]", + "minecraft:cave_vines[age=7,berries=false]": "minecraft:cave_vines[growing_plant_age=7]", + "minecraft:cave_vines[age=8,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=8]", + "minecraft:cave_vines[age=8,berries=false]": "minecraft:cave_vines[growing_plant_age=8]", + "minecraft:cave_vines[age=9,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=9]", + "minecraft:cave_vines[age=9,berries=false]": "minecraft:cave_vines[growing_plant_age=9]", + "minecraft:cave_vines[age=10,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=10]", + "minecraft:cave_vines[age=10,berries=false]": "minecraft:cave_vines[growing_plant_age=10]", + "minecraft:cave_vines[age=11,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=11]", + "minecraft:cave_vines[age=11,berries=false]": "minecraft:cave_vines[growing_plant_age=11]", + "minecraft:cave_vines[age=12,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=12]", + "minecraft:cave_vines[age=12,berries=false]": "minecraft:cave_vines[growing_plant_age=12]", + "minecraft:cave_vines[age=13,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=13]", + "minecraft:cave_vines[age=13,berries=false]": "minecraft:cave_vines[growing_plant_age=13]", + "minecraft:cave_vines[age=14,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=14]", + "minecraft:cave_vines[age=14,berries=false]": "minecraft:cave_vines[growing_plant_age=14]", + "minecraft:cave_vines[age=15,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=15]", + "minecraft:cave_vines[age=15,berries=false]": "minecraft:cave_vines[growing_plant_age=15]", + "minecraft:cave_vines[age=16,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=16]", + "minecraft:cave_vines[age=16,berries=false]": "minecraft:cave_vines[growing_plant_age=16]", + "minecraft:cave_vines[age=17,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=17]", + "minecraft:cave_vines[age=17,berries=false]": "minecraft:cave_vines[growing_plant_age=17]", + "minecraft:cave_vines[age=18,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=18]", + "minecraft:cave_vines[age=18,berries=false]": "minecraft:cave_vines[growing_plant_age=18]", + "minecraft:cave_vines[age=19,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=19]", + "minecraft:cave_vines[age=19,berries=false]": "minecraft:cave_vines[growing_plant_age=19]", + "minecraft:cave_vines[age=20,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=20]", + "minecraft:cave_vines[age=20,berries=false]": "minecraft:cave_vines[growing_plant_age=20]", + "minecraft:cave_vines[age=21,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=21]", + "minecraft:cave_vines[age=21,berries=false]": "minecraft:cave_vines[growing_plant_age=21]", + "minecraft:cave_vines[age=22,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=22]", + "minecraft:cave_vines[age=22,berries=false]": "minecraft:cave_vines[growing_plant_age=22]", + "minecraft:cave_vines[age=23,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=23]", + "minecraft:cave_vines[age=23,berries=false]": "minecraft:cave_vines[growing_plant_age=23]", + "minecraft:cave_vines[age=24,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=24]", + "minecraft:cave_vines[age=24,berries=false]": "minecraft:cave_vines[growing_plant_age=24]", + "minecraft:cave_vines[age=25,berries=true]": "minecraft:cave_vines_head_with_berries[growing_plant_age=25]", + "minecraft:cave_vines[age=25,berries=false]": "minecraft:cave_vines[growing_plant_age=25]", + "minecraft:cave_vines_plant[berries=true]": "minecraft:cave_vines_body_with_berries[growing_plant_age=0]", + "minecraft:cave_vines_plant[berries=false]": "minecraft:cave_vines[growing_plant_age=0]", + "minecraft:spore_blossom[]": "minecraft:spore_blossom[]", + "minecraft:azalea[]": "minecraft:azalea[]", + "minecraft:flowering_azalea[]": "minecraft:flowering_azalea[]", + "minecraft:moss_carpet[]": "minecraft:moss_carpet[]", + "minecraft:pink_petals[facing=north,flower_amount=1]": "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=north]", + "minecraft:pink_petals[facing=north,flower_amount=2]": "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=north]", + "minecraft:pink_petals[facing=north,flower_amount=3]": "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=north]", + "minecraft:pink_petals[facing=north,flower_amount=4]": "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=north]", + "minecraft:pink_petals[facing=south,flower_amount=1]": "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=south]", + "minecraft:pink_petals[facing=south,flower_amount=2]": "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=south]", + "minecraft:pink_petals[facing=south,flower_amount=3]": "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=south]", + "minecraft:pink_petals[facing=south,flower_amount=4]": "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=south]", + "minecraft:pink_petals[facing=west,flower_amount=1]": "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=west]", + "minecraft:pink_petals[facing=west,flower_amount=2]": "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=west]", + "minecraft:pink_petals[facing=west,flower_amount=3]": "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=west]", + "minecraft:pink_petals[facing=west,flower_amount=4]": "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=west]", + "minecraft:pink_petals[facing=east,flower_amount=1]": "minecraft:pink_petals[growth=0,minecraft:cardinal_direction=east]", + "minecraft:pink_petals[facing=east,flower_amount=2]": "minecraft:pink_petals[growth=1,minecraft:cardinal_direction=east]", + "minecraft:pink_petals[facing=east,flower_amount=3]": "minecraft:pink_petals[growth=2,minecraft:cardinal_direction=east]", + "minecraft:pink_petals[facing=east,flower_amount=4]": "minecraft:pink_petals[growth=3,minecraft:cardinal_direction=east]", + "minecraft:moss_block[]": "minecraft:moss_block[]", + "minecraft:big_dripleaf[facing=north,tilt=none,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=none,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=unstable,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=unstable,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=partial,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=partial,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=full,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=north,tilt=full,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf[facing=south,tilt=none,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=none,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=unstable,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=unstable,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=partial,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=partial,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=full,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=south,tilt=full,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf[facing=west,tilt=none,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=none,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=unstable,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=unstable,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=partial,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=partial,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=full,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=west,tilt=full,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf[facing=east,tilt=none,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=none,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=unstable,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=unstable,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=unstable,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=partial,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=partial,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=partial_tilt,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=full,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf[facing=east,tilt=full,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=true,big_dripleaf_tilt=full_tilt,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf_stem[facing=north,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf_stem[facing=north,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=north]", + "minecraft:big_dripleaf_stem[facing=south,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf_stem[facing=south,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=south]", + "minecraft:big_dripleaf_stem[facing=west,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf_stem[facing=west,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=west]", + "minecraft:big_dripleaf_stem[facing=east,waterlogged=true]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]", + "minecraft:big_dripleaf_stem[facing=east,waterlogged=false]": "minecraft:big_dripleaf[big_dripleaf_head=false,big_dripleaf_tilt=none,minecraft:cardinal_direction=east]", + "minecraft:small_dripleaf[facing=north,half=upper,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=north,half=upper,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=north,half=lower,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=north,half=lower,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=west,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=south,half=upper,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=south,half=upper,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=south,half=lower,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=south,half=lower,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=east,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=west,half=upper,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=west,half=upper,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=west,half=lower,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=west,half=lower,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=south,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=east,half=upper,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=east,half=upper,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=true]", + "minecraft:small_dripleaf[facing=east,half=lower,waterlogged=true]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=false]", + "minecraft:small_dripleaf[facing=east,half=lower,waterlogged=false]": "minecraft:small_dripleaf_block[minecraft:cardinal_direction=north,upper_block_bit=false]", + "minecraft:hanging_roots[waterlogged=true]": "minecraft:hanging_roots[]", + "minecraft:hanging_roots[waterlogged=false]": "minecraft:hanging_roots[]", + "minecraft:rooted_dirt[]": "minecraft:dirt_with_roots[]", + "minecraft:mud[]": "minecraft:mud[]", + "minecraft:deepslate[axis=x]": "minecraft:deepslate[pillar_axis=x]", + "minecraft:deepslate[axis=y]": "minecraft:deepslate[pillar_axis=y]", + "minecraft:deepslate[axis=z]": "minecraft:deepslate[pillar_axis=z]", + "minecraft:cobbled_deepslate[]": "minecraft:cobbled_deepslate[]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:cobbled_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:cobbled_deepslate_slab[type=top,waterlogged=true]": "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=top]", + "minecraft:cobbled_deepslate_slab[type=top,waterlogged=false]": "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=top]", + "minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=true]": "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=bottom]", + "minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=false]": "minecraft:cobbled_deepslate_slab[minecraft:vertical_half=bottom]", + "minecraft:cobbled_deepslate_slab[type=double,waterlogged=true]": "minecraft:cobbled_deepslate_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cobbled_deepslate_slab[type=double,waterlogged=false]": "minecraft:cobbled_deepslate_double_slab[minecraft:vertical_half=bottom]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:cobbled_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate[]": "minecraft:polished_deepslate[]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:polished_deepslate_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:polished_deepslate_slab[type=top,waterlogged=true]": "minecraft:polished_deepslate_slab[minecraft:vertical_half=top]", + "minecraft:polished_deepslate_slab[type=top,waterlogged=false]": "minecraft:polished_deepslate_slab[minecraft:vertical_half=top]", + "minecraft:polished_deepslate_slab[type=bottom,waterlogged=true]": "minecraft:polished_deepslate_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_deepslate_slab[type=bottom,waterlogged=false]": "minecraft:polished_deepslate_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_deepslate_slab[type=double,waterlogged=true]": "minecraft:polished_deepslate_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_deepslate_slab[type=double,waterlogged=false]": "minecraft:polished_deepslate_double_slab[minecraft:vertical_half=bottom]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:polished_deepslate_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tiles[]": "minecraft:deepslate_tiles[]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_tile_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_tile_slab[type=top,waterlogged=true]": "minecraft:deepslate_tile_slab[minecraft:vertical_half=top]", + "minecraft:deepslate_tile_slab[type=top,waterlogged=false]": "minecraft:deepslate_tile_slab[minecraft:vertical_half=top]", + "minecraft:deepslate_tile_slab[type=bottom,waterlogged=true]": "minecraft:deepslate_tile_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_tile_slab[type=bottom,waterlogged=false]": "minecraft:deepslate_tile_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_tile_slab[type=double,waterlogged=true]": "minecraft:deepslate_tile_double_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_tile_slab[type=double,waterlogged=false]": "minecraft:deepslate_tile_double_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_tile_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_bricks[]": "minecraft:deepslate_bricks[]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=3]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=2]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=1]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=true,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": "minecraft:deepslate_brick_stairs[upside_down_bit=false,weirdo_direction=0]", + "minecraft:deepslate_brick_slab[type=top,waterlogged=true]": "minecraft:deepslate_brick_slab[minecraft:vertical_half=top]", + "minecraft:deepslate_brick_slab[type=top,waterlogged=false]": "minecraft:deepslate_brick_slab[minecraft:vertical_half=top]", + "minecraft:deepslate_brick_slab[type=bottom,waterlogged=true]": "minecraft:deepslate_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_brick_slab[type=bottom,waterlogged=false]": "minecraft:deepslate_brick_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_brick_slab[type=double,waterlogged=true]": "minecraft:deepslate_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_brick_slab[type=double,waterlogged=false]": "minecraft:deepslate_brick_double_slab[minecraft:vertical_half=bottom]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=none,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=short,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=none,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=short,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=none,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=short,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=true]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=none,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=short,wall_post_bit=false]", + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": "minecraft:deepslate_brick_wall[wall_connection_type_east=tall,wall_connection_type_north=tall,wall_connection_type_south=tall,wall_connection_type_west=tall,wall_post_bit=false]", + "minecraft:chiseled_deepslate[]": "minecraft:chiseled_deepslate[]", + "minecraft:cracked_deepslate_bricks[]": "minecraft:cracked_deepslate_bricks[]", + "minecraft:cracked_deepslate_tiles[]": "minecraft:cracked_deepslate_tiles[]", + "minecraft:infested_deepslate[axis=x]": "minecraft:infested_deepslate[pillar_axis=x]", + "minecraft:infested_deepslate[axis=y]": "minecraft:infested_deepslate[pillar_axis=y]", + "minecraft:infested_deepslate[axis=z]": "minecraft:infested_deepslate[pillar_axis=z]", + "minecraft:smooth_basalt[]": "minecraft:smooth_basalt[]", + "minecraft:raw_iron_block[]": "minecraft:raw_iron_block[]", + "minecraft:raw_copper_block[]": "minecraft:raw_copper_block[]", + "minecraft:raw_gold_block[]": "minecraft:raw_gold_block[]", + "minecraft:potted_azalea_bush[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:potted_flowering_azalea_bush[]": "minecraft:flower_pot[update_bit=false]", + "minecraft:ochre_froglight[axis=x]": "minecraft:ochre_froglight[pillar_axis=x]", + "minecraft:ochre_froglight[axis=y]": "minecraft:ochre_froglight[pillar_axis=y]", + "minecraft:ochre_froglight[axis=z]": "minecraft:ochre_froglight[pillar_axis=z]", + "minecraft:verdant_froglight[axis=x]": "minecraft:verdant_froglight[pillar_axis=x]", + "minecraft:verdant_froglight[axis=y]": "minecraft:verdant_froglight[pillar_axis=y]", + "minecraft:verdant_froglight[axis=z]": "minecraft:verdant_froglight[pillar_axis=z]", + "minecraft:pearlescent_froglight[axis=x]": "minecraft:pearlescent_froglight[pillar_axis=x]", + "minecraft:pearlescent_froglight[axis=y]": "minecraft:pearlescent_froglight[pillar_axis=y]", + "minecraft:pearlescent_froglight[axis=z]": "minecraft:pearlescent_froglight[pillar_axis=z]", + "minecraft:frogspawn[]": "minecraft:frog_spawn[]", + "minecraft:reinforced_deepslate[]": "minecraft:reinforced_deepslate[]", + "minecraft:decorated_pot[cracked=true,facing=north,waterlogged=true]": "minecraft:decorated_pot[direction=0]", + "minecraft:decorated_pot[cracked=true,facing=north,waterlogged=false]": "minecraft:decorated_pot[direction=0]", + "minecraft:decorated_pot[cracked=true,facing=south,waterlogged=true]": "minecraft:decorated_pot[direction=2]", + "minecraft:decorated_pot[cracked=true,facing=south,waterlogged=false]": "minecraft:decorated_pot[direction=2]", + "minecraft:decorated_pot[cracked=true,facing=west,waterlogged=true]": "minecraft:decorated_pot[direction=3]", + "minecraft:decorated_pot[cracked=true,facing=west,waterlogged=false]": "minecraft:decorated_pot[direction=3]", + "minecraft:decorated_pot[cracked=true,facing=east,waterlogged=true]": "minecraft:decorated_pot[direction=1]", + "minecraft:decorated_pot[cracked=true,facing=east,waterlogged=false]": "minecraft:decorated_pot[direction=1]", + "minecraft:decorated_pot[cracked=false,facing=north,waterlogged=true]": "minecraft:decorated_pot[direction=0]", + "minecraft:decorated_pot[cracked=false,facing=north,waterlogged=false]": "minecraft:decorated_pot[direction=0]", + "minecraft:decorated_pot[cracked=false,facing=south,waterlogged=true]": "minecraft:decorated_pot[direction=2]", + "minecraft:decorated_pot[cracked=false,facing=south,waterlogged=false]": "minecraft:decorated_pot[direction=2]", + "minecraft:decorated_pot[cracked=false,facing=west,waterlogged=true]": "minecraft:decorated_pot[direction=3]", + "minecraft:decorated_pot[cracked=false,facing=west,waterlogged=false]": "minecraft:decorated_pot[direction=3]", + "minecraft:decorated_pot[cracked=false,facing=east,waterlogged=true]": "minecraft:decorated_pot[direction=1]", + "minecraft:decorated_pot[cracked=false,facing=east,waterlogged=false]": "minecraft:decorated_pot[direction=1]", + "minecraft:crafter[crafting=true,orientation=down_east,triggered=true]": "minecraft:crafter[crafting=true,orientation=down_east,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=down_east,triggered=false]": "minecraft:crafter[crafting=true,orientation=down_east,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=down_north,triggered=true]": "minecraft:crafter[crafting=true,orientation=down_north,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=down_north,triggered=false]": "minecraft:crafter[crafting=true,orientation=down_north,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=down_south,triggered=true]": "minecraft:crafter[crafting=true,orientation=down_south,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=down_south,triggered=false]": "minecraft:crafter[crafting=true,orientation=down_south,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=down_west,triggered=true]": "minecraft:crafter[crafting=true,orientation=down_west,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=down_west,triggered=false]": "minecraft:crafter[crafting=true,orientation=down_west,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=up_east,triggered=true]": "minecraft:crafter[crafting=true,orientation=up_east,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=up_east,triggered=false]": "minecraft:crafter[crafting=true,orientation=up_east,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=up_north,triggered=true]": "minecraft:crafter[crafting=true,orientation=up_north,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=up_north,triggered=false]": "minecraft:crafter[crafting=true,orientation=up_north,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=up_south,triggered=true]": "minecraft:crafter[crafting=true,orientation=up_south,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=up_south,triggered=false]": "minecraft:crafter[crafting=true,orientation=up_south,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=up_west,triggered=true]": "minecraft:crafter[crafting=true,orientation=up_west,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=up_west,triggered=false]": "minecraft:crafter[crafting=true,orientation=up_west,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=west_up,triggered=true]": "minecraft:crafter[crafting=true,orientation=west_up,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=west_up,triggered=false]": "minecraft:crafter[crafting=true,orientation=west_up,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=east_up,triggered=true]": "minecraft:crafter[crafting=true,orientation=east_up,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=east_up,triggered=false]": "minecraft:crafter[crafting=true,orientation=east_up,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=north_up,triggered=true]": "minecraft:crafter[crafting=true,orientation=north_up,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=north_up,triggered=false]": "minecraft:crafter[crafting=true,orientation=north_up,triggered_bit=false]", + "minecraft:crafter[crafting=true,orientation=south_up,triggered=true]": "minecraft:crafter[crafting=true,orientation=south_up,triggered_bit=true]", + "minecraft:crafter[crafting=true,orientation=south_up,triggered=false]": "minecraft:crafter[crafting=true,orientation=south_up,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=down_east,triggered=true]": "minecraft:crafter[crafting=false,orientation=down_east,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=down_east,triggered=false]": "minecraft:crafter[crafting=false,orientation=down_east,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=down_north,triggered=true]": "minecraft:crafter[crafting=false,orientation=down_north,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=down_north,triggered=false]": "minecraft:crafter[crafting=false,orientation=down_north,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=down_south,triggered=true]": "minecraft:crafter[crafting=false,orientation=down_south,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=down_south,triggered=false]": "minecraft:crafter[crafting=false,orientation=down_south,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=down_west,triggered=true]": "minecraft:crafter[crafting=false,orientation=down_west,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=down_west,triggered=false]": "minecraft:crafter[crafting=false,orientation=down_west,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=up_east,triggered=true]": "minecraft:crafter[crafting=false,orientation=up_east,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=up_east,triggered=false]": "minecraft:crafter[crafting=false,orientation=up_east,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=up_north,triggered=true]": "minecraft:crafter[crafting=false,orientation=up_north,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=up_north,triggered=false]": "minecraft:crafter[crafting=false,orientation=up_north,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=up_south,triggered=true]": "minecraft:crafter[crafting=false,orientation=up_south,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=up_south,triggered=false]": "minecraft:crafter[crafting=false,orientation=up_south,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=up_west,triggered=true]": "minecraft:crafter[crafting=false,orientation=up_west,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=up_west,triggered=false]": "minecraft:crafter[crafting=false,orientation=up_west,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=west_up,triggered=true]": "minecraft:crafter[crafting=false,orientation=west_up,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=west_up,triggered=false]": "minecraft:crafter[crafting=false,orientation=west_up,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=east_up,triggered=true]": "minecraft:crafter[crafting=false,orientation=east_up,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=east_up,triggered=false]": "minecraft:crafter[crafting=false,orientation=east_up,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=north_up,triggered=true]": "minecraft:crafter[crafting=false,orientation=north_up,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=north_up,triggered=false]": "minecraft:crafter[crafting=false,orientation=north_up,triggered_bit=false]", + "minecraft:crafter[crafting=false,orientation=south_up,triggered=true]": "minecraft:crafter[crafting=false,orientation=south_up,triggered_bit=true]", + "minecraft:crafter[crafting=false,orientation=south_up,triggered=false]": "minecraft:crafter[crafting=false,orientation=south_up,triggered_bit=false]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=inactive]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=0]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=waiting_for_players]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=1]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=active]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=2]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=waiting_for_reward_ejection]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=3]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=ejecting_reward]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=4]", + "minecraft:trial_spawner[ominous=true,trial_spawner_state=cooldown]": "minecraft:trial_spawner[ominous=true,trial_spawner_state=5]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=inactive]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=0]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=waiting_for_players]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=1]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=active]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=2]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=waiting_for_reward_ejection]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=3]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=ejecting_reward]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=4]", + "minecraft:trial_spawner[ominous=false,trial_spawner_state=cooldown]": "minecraft:trial_spawner[ominous=false,trial_spawner_state=5]", + "minecraft:vault[facing=north,ominous=true,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=true,vault_state=inactive]", + "minecraft:vault[facing=north,ominous=true,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=true,vault_state=active]", + "minecraft:vault[facing=north,ominous=true,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=true,vault_state=unlocking]", + "minecraft:vault[facing=north,ominous=true,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=true,vault_state=ejecting]", + "minecraft:vault[facing=north,ominous=false,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=false,vault_state=inactive]", + "minecraft:vault[facing=north,ominous=false,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=false,vault_state=active]", + "minecraft:vault[facing=north,ominous=false,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=false,vault_state=unlocking]", + "minecraft:vault[facing=north,ominous=false,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=north,ominous=false,vault_state=ejecting]", + "minecraft:vault[facing=south,ominous=true,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=true,vault_state=inactive]", + "minecraft:vault[facing=south,ominous=true,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=true,vault_state=active]", + "minecraft:vault[facing=south,ominous=true,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=true,vault_state=unlocking]", + "minecraft:vault[facing=south,ominous=true,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=true,vault_state=ejecting]", + "minecraft:vault[facing=south,ominous=false,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=false,vault_state=inactive]", + "minecraft:vault[facing=south,ominous=false,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=false,vault_state=active]", + "minecraft:vault[facing=south,ominous=false,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=false,vault_state=unlocking]", + "minecraft:vault[facing=south,ominous=false,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=south,ominous=false,vault_state=ejecting]", + "minecraft:vault[facing=west,ominous=true,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=true,vault_state=inactive]", + "minecraft:vault[facing=west,ominous=true,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=true,vault_state=active]", + "minecraft:vault[facing=west,ominous=true,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=true,vault_state=unlocking]", + "minecraft:vault[facing=west,ominous=true,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=true,vault_state=ejecting]", + "minecraft:vault[facing=west,ominous=false,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=false,vault_state=inactive]", + "minecraft:vault[facing=west,ominous=false,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=false,vault_state=active]", + "minecraft:vault[facing=west,ominous=false,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=false,vault_state=unlocking]", + "minecraft:vault[facing=west,ominous=false,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=west,ominous=false,vault_state=ejecting]", + "minecraft:vault[facing=east,ominous=true,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=true,vault_state=inactive]", + "minecraft:vault[facing=east,ominous=true,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=true,vault_state=active]", + "minecraft:vault[facing=east,ominous=true,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=true,vault_state=unlocking]", + "minecraft:vault[facing=east,ominous=true,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=true,vault_state=ejecting]", + "minecraft:vault[facing=east,ominous=false,vault_state=inactive]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=false,vault_state=inactive]", + "minecraft:vault[facing=east,ominous=false,vault_state=active]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=false,vault_state=active]", + "minecraft:vault[facing=east,ominous=false,vault_state=unlocking]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=false,vault_state=unlocking]", + "minecraft:vault[facing=east,ominous=false,vault_state=ejecting]": "minecraft:vault[minecraft:cardinal_direction=east,ominous=false,vault_state=ejecting]", + "minecraft:heavy_core[waterlogged=true]": "minecraft:heavy_core[]", + "minecraft:heavy_core[waterlogged=false]": "minecraft:heavy_core[]" +} \ No newline at end of file diff --git a/data/bedrock/1.21.0/entities.json b/data/bedrock/1.21.0/entities.json new file mode 100644 index 000000000..f9049b9e1 --- /dev/null +++ b/data/bedrock/1.21.0/entities.json @@ -0,0 +1,1445 @@ +[ + { + "id": 0, + "internalId": 10, + "name": "chicken", + "displayName": "Chicken", + "height": 0.7, + "width": 0.4, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 1, + "internalId": 11, + "name": "cow", + "displayName": "Cow", + "height": 1.4, + "width": 0.9, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 2, + "internalId": 12, + "name": "pig", + "displayName": "Pig", + "height": 0.9, + "width": null, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 3, + "internalId": 13, + "name": "sheep", + "displayName": "Sheep", + "height": 1.3, + "width": 0.9, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 4, + "internalId": 14, + "name": "wolf", + "displayName": "Wolf", + "height": 0.85, + "width": 0.6, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 5, + "internalId": 15, + "name": "villager_v2", + "displayName": "Villager", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "passive", + "category": "Passive mobs" + }, + { + "id": 6, + "internalId": 16, + "name": "mooshroom", + "displayName": "Mooshroom", + "height": 1.4, + "width": 0.9, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 7, + "internalId": 17, + "name": "squid", + "displayName": "Squid", + "height": 0.8, + "width": null, + "length": null, + "offset": null, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 8, + "internalId": 18, + "name": "rabbit", + "displayName": "Rabbit", + "height": 0.5, + "width": 0.4, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 9, + "internalId": 19, + "name": "bat", + "displayName": "Bat", + "height": 0.9, + "width": 0.5, + "length": null, + "offset": null, + "type": "ambient", + "category": "Passive mobs" + }, + { + "id": 10, + "internalId": 20, + "name": "iron_golem", + "displayName": "Iron Golem", + "height": 2.7, + "width": 1.4, + "length": null, + "offset": null, + "type": "mob", + "category": "Passive mobs" + }, + { + "id": 11, + "internalId": 21, + "name": "snow_golem", + "displayName": "Snow Golem", + "height": 1.9, + "width": 0.7, + "length": null, + "offset": null, + "type": "mob", + "category": "Passive mobs" + }, + { + "id": 12, + "internalId": 22, + "name": "ocelot", + "displayName": "Ocelot", + "height": 0.35, + "width": 0.3, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 13, + "internalId": 23, + "name": "horse", + "displayName": "Horse", + "height": 1.6, + "width": 1.3965, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 14, + "internalId": 24, + "name": "donkey", + "displayName": "Donkey", + "height": 1.6, + "width": 1.3965, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 15, + "internalId": 25, + "name": "mule", + "displayName": "Mule", + "height": 1.6, + "width": 1.3965, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 16, + "internalId": 26, + "name": "skeleton_horse", + "displayName": "Skeleton Horse", + "height": 1.6, + "width": 1.3965, + "length": null, + "offset": null, + "type": "animal", + "category": "Hostile mobs" + }, + { + "id": 17, + "internalId": 27, + "name": "zombie_horse", + "displayName": "Zombie Horse", + "height": 1.6, + "width": 1.3965, + "length": null, + "offset": null, + "type": "animal", + "category": "Hostile mobs" + }, + { + "id": 18, + "internalId": 28, + "name": "polar_bear", + "displayName": "Polar Bear", + "height": 1.4, + "width": 1.3, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 19, + "internalId": 29, + "name": "llama", + "displayName": "Llama", + "height": 1.87, + "width": 0.9, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 20, + "internalId": 29, + "name": "llama", + "displayName": "Trader Llama", + "height": 1.187, + "width": 0.9, + "length": 0, + "offset": 0, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 21, + "internalId": 30, + "name": "parrot", + "displayName": "Parrot", + "height": 0.9, + "width": 0.5, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 22, + "internalId": 31, + "name": "dolphin", + "displayName": "Dolphin", + "height": 0.6, + "width": 0.9, + "length": null, + "offset": null, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 23, + "internalId": 32, + "name": "zombie", + "displayName": "Zombie", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 24, + "internalId": 32, + "name": "zombie", + "displayName": "Giant", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 25, + "internalId": 33, + "name": "creeper", + "displayName": "Creeper", + "height": 1.7, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 26, + "internalId": 34, + "name": "skeleton", + "displayName": "Skeleton", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 27, + "internalId": 35, + "name": "spider", + "displayName": "Spider", + "height": 0.9, + "width": 1.4, + "length": 1.4, + "offset": 1, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 28, + "internalId": 36, + "name": "zombie_pigman", + "displayName": "Zombified Piglin", + "height": 1.95, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 29, + "internalId": 37, + "name": "slime", + "displayName": "Slime", + "height": 0.51, + "width": null, + "length": null, + "offset": null, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 30, + "internalId": 38, + "name": "enderman", + "displayName": "Enderman", + "height": 2.9, + "width": 0.6, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 31, + "internalId": 39, + "name": "silverfish", + "displayName": "Silverfish", + "height": 0.3, + "width": 0.4, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 32, + "internalId": 40, + "name": "cave_spider", + "displayName": "Cave Spider", + "height": 0.5, + "width": 0.7, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 33, + "internalId": 41, + "name": "ghast", + "displayName": "Ghast", + "height": 4, + "width": null, + "length": null, + "offset": null, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 34, + "internalId": 42, + "name": "magma_cube", + "displayName": "Magma Cube", + "height": 0.51, + "width": null, + "length": null, + "offset": null, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 35, + "internalId": 43, + "name": "blaze", + "displayName": "Blaze", + "height": 1.8, + "width": 0.6, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 36, + "internalId": 44, + "name": "zombie_villager_v2", + "displayName": "Zombie Villager", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 37, + "internalId": 45, + "name": "witch", + "displayName": "Witch", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 38, + "internalId": 46, + "name": "stray", + "displayName": "Stray", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 39, + "internalId": 47, + "name": "husk", + "displayName": "Husk", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 40, + "internalId": 48, + "name": "wither_skeleton", + "displayName": "Wither Skeleton", + "height": 2.4, + "width": 0.7, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 41, + "internalId": 49, + "name": "guardian", + "displayName": "Guardian", + "height": 0.85, + "width": null, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 42, + "internalId": 50, + "name": "elder_guardian", + "displayName": "Elder Guardian", + "height": 1.9975, + "width": null, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 43, + "internalId": 51, + "name": "npc", + "displayName": "npc", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "" + }, + { + "id": 44, + "internalId": 52, + "name": "wither", + "displayName": "Wither", + "height": 3.5, + "width": 0.9, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 45, + "internalId": 53, + "name": "ender_dragon", + "displayName": "Ender Dragon", + "height": 0, + "width": 0, + "length": null, + "offset": null, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 46, + "internalId": 54, + "name": "shulker", + "displayName": "Shulker", + "height": 1, + "width": 1, + "length": null, + "offset": null, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 47, + "internalId": 55, + "name": "endermite", + "displayName": "Endermite", + "height": 0.3, + "width": 0.4, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 48, + "internalId": 56, + "name": "agent", + "displayName": "agent", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "" + }, + { + "id": 49, + "internalId": 57, + "name": "vindicator", + "displayName": "Vindicator", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 50, + "internalId": 114, + "name": "pillager", + "displayName": "Pillager", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 51, + "internalId": 118, + "name": "wandering_trader", + "displayName": "Wandering Trader", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "passive", + "category": "Passive mobs" + }, + { + "id": 52, + "internalId": 58, + "name": "phantom", + "displayName": "Phantom", + "height": 0.5, + "width": 0.9, + "length": 0.9, + "offset": 0.6, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 53, + "internalId": 59, + "name": "ravager", + "displayName": "Ravager", + "height": 1.9, + "width": 1.2, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 54, + "internalId": 61, + "name": "armor_stand", + "displayName": "Armor Stand", + "height": 1.975, + "width": 0.5, + "length": null, + "offset": null, + "type": "living", + "category": "Immobile" + }, + { + "id": 55, + "internalId": 62, + "name": "tripod_camera", + "displayName": "tripod_camera", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "" + }, + { + "id": 56, + "internalId": 63, + "name": "player", + "displayName": "Player", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "player", + "category": "UNKNOWN" + }, + { + "id": 57, + "internalId": 64, + "name": "item", + "displayName": "Item", + "height": 0.25, + "width": 0.25, + "length": 0.25, + "offset": 0.125, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 58, + "internalId": 65, + "name": "tnt", + "displayName": "tnt", + "height": 0.98, + "width": 0.98, + "length": 0.98, + "offset": 0, + "type": "" + }, + { + "id": 59, + "internalId": 66, + "name": "falling_block", + "displayName": "Falling Block", + "height": 0.98, + "width": 0.98, + "length": null, + "offset": null, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 60, + "internalId": 67, + "name": "moving_block", + "displayName": "moving_block", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "" + }, + { + "id": 61, + "internalId": 68, + "name": "xp_bottle", + "displayName": "xp_bottle", + "height": 0.25, + "width": 0.25, + "length": 0, + "offset": 0, + "type": "" + }, + { + "id": 62, + "internalId": 69, + "name": "xp_orb", + "displayName": "Experience Orb", + "height": 0, + "width": 0, + "length": 0, + "offset": 0, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 63, + "internalId": 70, + "name": "eye_of_ender_signal", + "displayName": "Eye of Ender", + "height": 0.25, + "width": 0.25, + "length": 0, + "offset": 0, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 64, + "internalId": 71, + "name": "ender_crystal", + "displayName": "End Crystal", + "height": 2, + "width": 2, + "length": 2, + "offset": 0, + "type": "other", + "category": "Immobile" + }, + { + "id": 65, + "internalId": 72, + "name": "fireworks_rocket", + "displayName": "Firework Rocket", + "height": 0.25, + "width": 0.25, + "length": 0.25, + "offset": 0, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 66, + "internalId": 73, + "name": "thrown_trident", + "displayName": "Trident", + "height": 0, + "width": 0, + "length": 0, + "offset": 0, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 67, + "internalId": 74, + "name": "turtle", + "displayName": "Turtle", + "height": 0.4, + "width": 1.2, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 68, + "internalId": 75, + "name": "cat", + "displayName": "Cat", + "height": 0.35, + "width": 0.3, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 69, + "internalId": 76, + "name": "shulker_bullet", + "displayName": "Shulker Bullet", + "height": 0.3125, + "width": null, + "length": null, + "offset": null, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 70, + "internalId": 77, + "name": "fishing_hook", + "displayName": "Fishing Bobber", + "height": 0, + "width": 0, + "length": 0, + "offset": 0, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 71, + "internalId": 78, + "name": "chalkboard", + "displayName": "chalkboard", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "" + }, + { + "id": 72, + "internalId": 79, + "name": "dragon_fireball", + "displayName": "Dragon Fireball", + "height": 1, + "width": null, + "length": null, + "offset": null, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 73, + "internalId": 80, + "name": "arrow", + "displayName": "Arrow", + "height": 0.25, + "width": 0.25, + "length": null, + "offset": null, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 74, + "internalId": 80, + "name": "arrow", + "displayName": "Spectral Arrow", + "height": 0.25, + "width": 0.25, + "length": 0.25, + "offset": 0, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 75, + "internalId": 81, + "name": "snowball", + "displayName": "Snowball", + "height": 0.25, + "width": null, + "length": null, + "offset": null, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 76, + "internalId": 82, + "name": "egg", + "displayName": "egg", + "height": 0.25, + "width": 0.25, + "length": 0.25, + "offset": 0, + "type": "" + }, + { + "id": 77, + "internalId": 83, + "name": "painting", + "displayName": "Painting", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "other", + "category": "Immobile" + }, + { + "id": 78, + "internalId": 84, + "name": "minecart", + "displayName": "Minecart", + "height": 0.7, + "width": 0.98, + "length": 0.98, + "offset": 0.35, + "type": "other", + "category": "Vehicles" + }, + { + "id": 79, + "internalId": 85, + "name": "fireball", + "displayName": "Fireball", + "height": 1, + "width": null, + "length": null, + "offset": null, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 80, + "internalId": 86, + "name": "splash_potion", + "displayName": "splash_potion", + "height": 0.25, + "width": 0.25, + "length": 0.25, + "offset": 0, + "type": "" + }, + { + "id": 81, + "internalId": 87, + "name": "ender_pearl", + "displayName": "ender_pearl", + "height": 0.25, + "width": 0.25, + "length": 0.25, + "offset": 0, + "type": "" + }, + { + "id": 82, + "internalId": 88, + "name": "leash_knot", + "displayName": "Leash Knot", + "height": 0.5, + "width": 0.375, + "length": null, + "offset": null, + "type": "other", + "category": "Immobile" + }, + { + "id": 83, + "internalId": 89, + "name": "wither_skull", + "displayName": "Wither Skull", + "height": 0.3125, + "width": null, + "length": null, + "offset": null, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 84, + "internalId": 90, + "name": "boat", + "displayName": "Boat", + "height": 0.6, + "width": 1.6, + "length": 1.6, + "offset": 0.35, + "type": "other", + "category": "Vehicles" + }, + { + "id": 85, + "internalId": 91, + "name": "wither_skull_dangerous", + "displayName": "wither_skull_dangerous", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "" + }, + { + "id": 86, + "internalId": 93, + "name": "lightning_bolt", + "displayName": "Lightning Bolt", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 87, + "internalId": 94, + "name": "small_fireball", + "displayName": "Small Fireball", + "height": 0.3125, + "width": null, + "length": null, + "offset": null, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 88, + "internalId": 95, + "name": "area_effect_cloud", + "displayName": "Area Effect Cloud", + "height": 0.5, + "width": 1, + "length": null, + "offset": null, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 89, + "internalId": 96, + "name": "hopper_minecart", + "displayName": "hopper_minecart", + "height": 0.7, + "width": 0.98, + "length": 0.98, + "offset": 0.35, + "type": "" + }, + { + "id": 90, + "internalId": 97, + "name": "tnt_minecart", + "displayName": "tnt_minecart", + "height": 0.7, + "width": 0.98, + "length": 0.98, + "offset": 0.35, + "type": "" + }, + { + "id": 91, + "internalId": 98, + "name": "chest_minecart", + "displayName": "chest_minecart", + "height": 0.7, + "width": 0.98, + "length": 0.98, + "offset": 0.35, + "type": "" + }, + { + "id": 92, + "internalId": 98, + "name": "minecart", + "displayName": "minecart", + "height": 0.7, + "width": 0.98, + "length": 0.98, + "offset": 0.35, + "type": "" + }, + { + "id": 93, + "internalId": 98, + "name": "minecart", + "displayName": "minecart", + "height": 0.7, + "width": 0.98, + "length": 0.98, + "offset": 0.35, + "type": "" + }, + { + "id": 94, + "internalId": 100, + "name": "command_block_minecart", + "displayName": "command_block_minecart", + "height": 0.7, + "width": 0.98, + "length": 0.98, + "offset": 0.35, + "type": "" + }, + { + "id": 95, + "internalId": 101, + "name": "lingering_potion", + "displayName": "lingering_potion", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "" + }, + { + "id": 96, + "internalId": 102, + "name": "llama_spit", + "displayName": "Llama Spit", + "height": 0.25, + "width": null, + "length": null, + "offset": null, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 97, + "internalId": 103, + "name": "evocation_fang", + "displayName": "Evoker Fangs", + "height": 0.8, + "width": 0.5, + "length": 0.5, + "offset": 0, + "type": "other", + "category": "Hostile mobs" + }, + { + "id": 98, + "internalId": 104, + "name": "evocation_illager", + "displayName": "Evoker", + "height": 1.95, + "width": 0.6, + "length": 0.6, + "offset": 0, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 99, + "internalId": 105, + "name": "vex", + "displayName": "Vex", + "height": 0.8, + "width": 0.4, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 100, + "internalId": 106, + "name": "ice_bomb", + "displayName": "ice_bomb", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "" + }, + { + "id": 101, + "internalId": 107, + "name": "balloon", + "displayName": "balloon", + "height": 0, + "width": null, + "length": null, + "offset": null, + "type": "" + }, + { + "id": 102, + "internalId": 108, + "name": "pufferfish", + "displayName": "Pufferfish", + "height": 0.7, + "width": 0.7, + "length": null, + "offset": null, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 103, + "internalId": 109, + "name": "salmon", + "displayName": "Salmon", + "height": 0.5, + "width": 0.7, + "length": null, + "offset": null, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 104, + "internalId": 110, + "name": "drowned", + "displayName": "Drowned", + "height": 1.95, + "width": 0.6, + "length": null, + "offset": null, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 105, + "internalId": 111, + "name": "tropicalfish", + "displayName": "Tropical Fish", + "height": 0.6, + "width": 0.6, + "length": 0, + "offset": 0, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 106, + "internalId": 112, + "name": "cod", + "displayName": "Cod", + "height": 0.25, + "width": 0.5, + "length": null, + "offset": null, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 107, + "internalId": 113, + "name": "panda", + "displayName": "Panda", + "height": 1.25, + "width": 1.125, + "length": 1.825, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 108, + "internalId": 121, + "name": "fox", + "displayName": "Fox", + "height": 0.5, + "width": 1.25, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 109, + "internalId": 122, + "name": "bee", + "displayName": "Bee", + "height": 0.6, + "width": 0.6, + "length": null, + "offset": null, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 110, + "internalId": 125, + "name": "strider", + "displayName": "Strider", + "height": 1.7, + "width": 0.9, + "length": 0, + "offset": 0, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 111, + "internalId": 124, + "name": "hoglin", + "displayName": "Hoglin", + "height": 1.4, + "width": 1.3965, + "length": 1.3965, + "offset": 0, + "type": "animal", + "category": "Hostile mobs" + }, + { + "id": 112, + "internalId": 126, + "name": "zoglin", + "displayName": "Zoglin", + "height": 1.4, + "width": 1.3965, + "length": 1.3965, + "offset": 0, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 113, + "internalId": 123, + "name": "piglin", + "displayName": "Piglin", + "height": 1.95, + "width": 0.6, + "length": 0.6, + "offset": 0, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 114, + "internalId": 127, + "name": "piglin_brute", + "displayName": "Piglin Brute", + "height": 1.95, + "width": 0.6, + "length": 0.6, + "offset": 0, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 115, + "internalId": 0, + "name": "axolotl", + "displayName": "Axolotl", + "height": 0.42, + "width": 0.7, + "length": 0.7, + "offset": 0, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 116, + "internalId": 0, + "name": "glow_squid", + "displayName": "Glow Squid", + "height": 0.8, + "width": 0.8, + "length": 0.8, + "offset": 0, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 117, + "internalId": 0, + "name": "goat", + "displayName": "Goat", + "height": 1.3, + "width": 0.9, + "length": 0.9, + "offset": 0, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 118, + "internalId": 0, + "name": "item_frame", + "displayName": "Item Frame", + "height": 0, + "width": 0, + "length": null, + "offset": null, + "type": "other", + "category": "Immobile" + }, + { + "id": 119, + "internalId": 0, + "name": "glow_item_frame", + "displayName": "Glow Item Frame", + "height": 0, + "width": 0, + "length": null, + "offset": null, + "type": "other", + "category": "Immobile" + }, + { + "id": 120, + "internalId": 104, + "name": "evocation_illager", + "displayName": "Illusioner", + "height": 1.8, + "width": 0.6, + "length": 0.6, + "offset": 1.62, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 121, + "internalId": 32, + "name": "armor_stand", + "displayName": "armor_stand", + "height": 0, + "width": 0, + "length": 0, + "offset": 0, + "type": "" + } +] \ No newline at end of file diff --git a/data/bedrock/1.21.0/items.json b/data/bedrock/1.21.0/items.json new file mode 100644 index 000000000..044b50406 --- /dev/null +++ b/data/bedrock/1.21.0/items.json @@ -0,0 +1,11126 @@ +[ + { + "id": 0, + "stackSize": 64, + "name": "air", + "displayName": "Air" + }, + { + "id": 1, + "stackSize": 64, + "name": "stone", + "displayName": "Stone" + }, + { + "id": 2, + "stackSize": 64, + "name": "granite", + "displayName": "Granite" + }, + { + "id": 3, + "stackSize": 64, + "name": "polished_granite", + "displayName": "Polished Granite" + }, + { + "id": 4, + "stackSize": 64, + "name": "diorite", + "displayName": "Diorite" + }, + { + "id": 5, + "stackSize": 64, + "name": "polished_diorite", + "displayName": "Polished Diorite" + }, + { + "id": 6, + "stackSize": 64, + "name": "andesite", + "displayName": "Andesite" + }, + { + "id": 7, + "stackSize": 64, + "name": "polished_andesite", + "displayName": "Polished Andesite" + }, + { + "id": 8, + "stackSize": 64, + "name": "deepslate", + "displayName": "Deepslate" + }, + { + "id": 9, + "stackSize": 64, + "name": "cobbled_deepslate", + "displayName": "Cobbled Deepslate" + }, + { + "id": 10, + "stackSize": 64, + "name": "polished_deepslate", + "displayName": "Polished Deepslate" + }, + { + "id": 11, + "stackSize": 64, + "name": "calcite", + "displayName": "Calcite" + }, + { + "id": 12, + "stackSize": 64, + "name": "tuff", + "displayName": "Tuff" + }, + { + "id": 13, + "stackSize": 64, + "name": "tuff_slab", + "displayName": "Tuff Slab" + }, + { + "id": 14, + "stackSize": 64, + "name": "tuff_stairs", + "displayName": "Tuff Stairs" + }, + { + "id": 15, + "stackSize": 64, + "name": "tuff_wall", + "displayName": "Tuff Wall" + }, + { + "id": 16, + "stackSize": 64, + "name": "chiseled_tuff", + "displayName": "Chiseled Tuff" + }, + { + "id": 17, + "stackSize": 64, + "name": "polished_tuff", + "displayName": "Polished Tuff" + }, + { + "id": 18, + "stackSize": 64, + "name": "polished_tuff_slab", + "displayName": "Polished Tuff Slab" + }, + { + "id": 19, + "stackSize": 64, + "name": "polished_tuff_stairs", + "displayName": "Polished Tuff Stairs" + }, + { + "id": 20, + "stackSize": 64, + "name": "polished_tuff_wall", + "displayName": "Polished Tuff Wall" + }, + { + "id": 21, + "stackSize": 64, + "name": "tuff_bricks", + "displayName": "Tuff Bricks" + }, + { + "id": 22, + "stackSize": 64, + "name": "tuff_brick_slab", + "displayName": "Tuff Brick Slab" + }, + { + "id": 23, + "stackSize": 64, + "name": "tuff_brick_stairs", + "displayName": "Tuff Brick Stairs" + }, + { + "id": 24, + "stackSize": 64, + "name": "tuff_brick_wall", + "displayName": "Tuff Brick Wall" + }, + { + "id": 25, + "stackSize": 64, + "name": "chiseled_tuff_bricks", + "displayName": "Chiseled Tuff Bricks" + }, + { + "id": 26, + "stackSize": 64, + "name": "dripstone_block", + "displayName": "Dripstone Block" + }, + { + "id": 27, + "stackSize": 64, + "name": "grass_block", + "displayName": "Grass Block" + }, + { + "id": 28, + "displayName": "Dirt", + "name": "dirt", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 29, + "name": "coarse_dirt", + "displayName": "Coarse Dirt", + "stackSize": 64 + } + ] + }, + { + "id": 30, + "stackSize": 64, + "name": "podzol", + "displayName": "Podzol" + }, + { + "id": 31, + "stackSize": 64, + "name": "dirt_with_roots", + "displayName": "Rooted Dirt" + }, + { + "id": 32, + "stackSize": 64, + "name": "mud", + "displayName": "Mud" + }, + { + "id": 33, + "stackSize": 64, + "name": "crimson_nylium", + "displayName": "Crimson Nylium" + }, + { + "id": 34, + "stackSize": 64, + "name": "warped_nylium", + "displayName": "Warped Nylium" + }, + { + "id": 35, + "stackSize": 64, + "name": "cobblestone", + "displayName": "Cobblestone" + }, + { + "id": 36, + "stackSize": 64, + "name": "oak_planks", + "displayName": "Oak Planks" + }, + { + "id": 37, + "stackSize": 64, + "name": "spruce_planks", + "displayName": "Spruce Planks" + }, + { + "id": 38, + "stackSize": 64, + "name": "birch_planks", + "displayName": "Birch Planks" + }, + { + "id": 39, + "stackSize": 64, + "name": "jungle_planks", + "displayName": "Jungle Planks" + }, + { + "id": 40, + "stackSize": 64, + "name": "acacia_planks", + "displayName": "Acacia Planks" + }, + { + "id": 41, + "stackSize": 64, + "name": "cherry_planks", + "displayName": "Cherry Planks" + }, + { + "id": 42, + "stackSize": 64, + "name": "dark_oak_planks", + "displayName": "Dark Oak Planks" + }, + { + "id": 43, + "stackSize": 64, + "name": "mangrove_planks", + "displayName": "Mangrove Planks" + }, + { + "id": 44, + "stackSize": 64, + "name": "bamboo_planks", + "displayName": "Bamboo Planks" + }, + { + "id": 45, + "stackSize": 64, + "name": "crimson_planks", + "displayName": "Crimson Planks" + }, + { + "id": 46, + "stackSize": 64, + "name": "warped_planks", + "displayName": "Warped Planks" + }, + { + "id": 47, + "stackSize": 64, + "name": "bamboo_mosaic", + "displayName": "Bamboo Mosaic" + }, + { + "id": 48, + "stackSize": 64, + "name": "oak_sapling", + "displayName": "Oak Sapling" + }, + { + "id": 49, + "stackSize": 64, + "name": "spruce_sapling", + "displayName": "Spruce Sapling" + }, + { + "id": 50, + "stackSize": 64, + "name": "birch_sapling", + "displayName": "Birch Sapling" + }, + { + "id": 51, + "stackSize": 64, + "name": "jungle_sapling", + "displayName": "Jungle Sapling" + }, + { + "id": 52, + "stackSize": 64, + "name": "acacia_sapling", + "displayName": "Acacia Sapling" + }, + { + "id": 53, + "stackSize": 64, + "name": "cherry_sapling", + "displayName": "Cherry Sapling" + }, + { + "id": 54, + "stackSize": 64, + "name": "dark_oak_sapling", + "displayName": "Dark Oak Sapling" + }, + { + "id": 55, + "stackSize": 64, + "name": "mangrove_propagule", + "displayName": "Mangrove Propagule" + }, + { + "id": 56, + "stackSize": 64, + "name": "bedrock", + "displayName": "Bedrock" + }, + { + "id": 57, + "displayName": "Sand", + "name": "sand", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 60, + "name": "red_sand", + "displayName": "Red Sand", + "stackSize": 64 + } + ] + }, + { + "id": 58, + "stackSize": 64, + "name": "suspicious_sand", + "displayName": "Suspicious Sand" + }, + { + "id": 59, + "stackSize": 64, + "name": "suspicious_gravel", + "displayName": "Suspicious Gravel" + }, + { + "id": 61, + "stackSize": 64, + "name": "gravel", + "displayName": "Gravel" + }, + { + "id": 62, + "stackSize": 64, + "name": "coal_ore", + "displayName": "Coal Ore" + }, + { + "id": 63, + "stackSize": 64, + "name": "deepslate_coal_ore", + "displayName": "Deepslate Coal Ore" + }, + { + "id": 64, + "stackSize": 64, + "name": "iron_ore", + "displayName": "Iron Ore" + }, + { + "id": 65, + "stackSize": 64, + "name": "deepslate_iron_ore", + "displayName": "Deepslate Iron Ore" + }, + { + "id": 66, + "stackSize": 64, + "name": "copper_ore", + "displayName": "Copper Ore" + }, + { + "id": 67, + "stackSize": 64, + "name": "deepslate_copper_ore", + "displayName": "Deepslate Copper Ore" + }, + { + "id": 68, + "stackSize": 64, + "name": "gold_ore", + "displayName": "Gold Ore" + }, + { + "id": 69, + "stackSize": 64, + "name": "deepslate_gold_ore", + "displayName": "Deepslate Gold Ore" + }, + { + "id": 70, + "stackSize": 64, + "name": "redstone_ore", + "displayName": "Redstone Ore" + }, + { + "id": 71, + "stackSize": 64, + "name": "deepslate_redstone_ore", + "displayName": "Deepslate Redstone Ore" + }, + { + "id": 72, + "stackSize": 64, + "name": "emerald_ore", + "displayName": "Emerald Ore" + }, + { + "id": 73, + "stackSize": 64, + "name": "deepslate_emerald_ore", + "displayName": "Deepslate Emerald Ore" + }, + { + "id": 74, + "stackSize": 64, + "name": "lapis_ore", + "displayName": "Lapis Lazuli Ore" + }, + { + "id": 75, + "stackSize": 64, + "name": "deepslate_lapis_ore", + "displayName": "Deepslate Lapis Lazuli Ore" + }, + { + "id": 76, + "stackSize": 64, + "name": "diamond_ore", + "displayName": "Diamond Ore" + }, + { + "id": 77, + "stackSize": 64, + "name": "deepslate_diamond_ore", + "displayName": "Deepslate Diamond Ore" + }, + { + "id": 78, + "stackSize": 64, + "name": "nether_gold_ore", + "displayName": "Nether Gold Ore" + }, + { + "id": 79, + "stackSize": 64, + "name": "quartz_ore", + "displayName": "Nether Quartz Ore" + }, + { + "id": 80, + "stackSize": 64, + "name": "ancient_debris", + "displayName": "Ancient Debris" + }, + { + "id": 81, + "stackSize": 64, + "name": "coal_block", + "displayName": "Block of Coal" + }, + { + "id": 82, + "stackSize": 64, + "name": "raw_iron_block", + "displayName": "Block of Raw Iron" + }, + { + "id": 83, + "stackSize": 64, + "name": "raw_copper_block", + "displayName": "Block of Raw Copper" + }, + { + "id": 84, + "stackSize": 64, + "name": "raw_gold_block", + "displayName": "Block of Raw Gold" + }, + { + "id": 85, + "stackSize": 64, + "name": "heavy_core", + "displayName": "Heavy Core" + }, + { + "id": 86, + "stackSize": 64, + "name": "amethyst_block", + "displayName": "Block of Amethyst" + }, + { + "id": 87, + "stackSize": 64, + "name": "budding_amethyst", + "displayName": "Budding Amethyst" + }, + { + "id": 88, + "stackSize": 64, + "name": "iron_block", + "displayName": "Block of Iron" + }, + { + "id": 89, + "stackSize": 64, + "name": "copper_block", + "displayName": "Block of Copper" + }, + { + "id": 90, + "stackSize": 64, + "name": "gold_block", + "displayName": "Block of Gold" + }, + { + "id": 91, + "stackSize": 64, + "name": "diamond_block", + "displayName": "Block of Diamond" + }, + { + "id": 92, + "stackSize": 64, + "name": "netherite_block", + "displayName": "Block of Netherite" + }, + { + "id": 93, + "stackSize": 64, + "name": "exposed_copper", + "displayName": "Exposed Copper" + }, + { + "id": 94, + "stackSize": 64, + "name": "weathered_copper", + "displayName": "Weathered Copper" + }, + { + "id": 95, + "stackSize": 64, + "name": "oxidized_copper", + "displayName": "Oxidized Copper" + }, + { + "id": 96, + "stackSize": 64, + "name": "chiseled_copper", + "displayName": "Chiseled Copper" + }, + { + "id": 97, + "stackSize": 64, + "name": "exposed_chiseled_copper", + "displayName": "Exposed Chiseled Copper" + }, + { + "id": 98, + "stackSize": 64, + "name": "weathered_chiseled_copper", + "displayName": "Weathered Chiseled Copper" + }, + { + "id": 99, + "stackSize": 64, + "name": "oxidized_chiseled_copper", + "displayName": "Oxidized Chiseled Copper" + }, + { + "id": 100, + "stackSize": 64, + "name": "cut_copper", + "displayName": "Cut Copper" + }, + { + "id": 101, + "stackSize": 64, + "name": "exposed_cut_copper", + "displayName": "Exposed Cut Copper" + }, + { + "id": 102, + "stackSize": 64, + "name": "weathered_cut_copper", + "displayName": "Weathered Cut Copper" + }, + { + "id": 103, + "stackSize": 64, + "name": "oxidized_cut_copper", + "displayName": "Oxidized Cut Copper" + }, + { + "id": 104, + "stackSize": 64, + "name": "cut_copper_stairs", + "displayName": "Cut Copper Stairs" + }, + { + "id": 105, + "stackSize": 64, + "name": "exposed_cut_copper_stairs", + "displayName": "Exposed Cut Copper Stairs" + }, + { + "id": 106, + "stackSize": 64, + "name": "weathered_cut_copper_stairs", + "displayName": "Weathered Cut Copper Stairs" + }, + { + "id": 107, + "stackSize": 64, + "name": "oxidized_cut_copper_stairs", + "displayName": "Oxidized Cut Copper Stairs" + }, + { + "id": 108, + "stackSize": 64, + "name": "cut_copper_slab", + "displayName": "Cut Copper Slab" + }, + { + "id": 109, + "stackSize": 64, + "name": "exposed_cut_copper_slab", + "displayName": "Exposed Cut Copper Slab" + }, + { + "id": 110, + "stackSize": 64, + "name": "weathered_cut_copper_slab", + "displayName": "Weathered Cut Copper Slab" + }, + { + "id": 111, + "stackSize": 64, + "name": "oxidized_cut_copper_slab", + "displayName": "Oxidized Cut Copper Slab" + }, + { + "id": 112, + "stackSize": 64, + "name": "waxed_copper", + "displayName": "Waxed Block of Copper" + }, + { + "id": 113, + "stackSize": 64, + "name": "waxed_exposed_copper", + "displayName": "Waxed Exposed Copper" + }, + { + "id": 114, + "stackSize": 64, + "name": "waxed_weathered_copper", + "displayName": "Waxed Weathered Copper" + }, + { + "id": 115, + "stackSize": 64, + "name": "waxed_oxidized_copper", + "displayName": "Waxed Oxidized Copper" + }, + { + "id": 116, + "stackSize": 64, + "name": "waxed_chiseled_copper", + "displayName": "Waxed Chiseled Copper" + }, + { + "id": 117, + "stackSize": 64, + "name": "waxed_exposed_chiseled_copper", + "displayName": "Waxed Exposed Chiseled Copper" + }, + { + "id": 118, + "stackSize": 64, + "name": "waxed_weathered_chiseled_copper", + "displayName": "Waxed Weathered Chiseled Copper" + }, + { + "id": 119, + "stackSize": 64, + "name": "waxed_oxidized_chiseled_copper", + "displayName": "Waxed Oxidized Chiseled Copper" + }, + { + "id": 120, + "stackSize": 64, + "name": "waxed_cut_copper", + "displayName": "Waxed Cut Copper" + }, + { + "id": 121, + "stackSize": 64, + "name": "waxed_exposed_cut_copper", + "displayName": "Waxed Exposed Cut Copper" + }, + { + "id": 122, + "stackSize": 64, + "name": "waxed_weathered_cut_copper", + "displayName": "Waxed Weathered Cut Copper" + }, + { + "id": 123, + "stackSize": 64, + "name": "waxed_oxidized_cut_copper", + "displayName": "Waxed Oxidized Cut Copper" + }, + { + "id": 124, + "stackSize": 64, + "name": "waxed_cut_copper_stairs", + "displayName": "Waxed Cut Copper Stairs" + }, + { + "id": 125, + "stackSize": 64, + "name": "waxed_exposed_cut_copper_stairs", + "displayName": "Waxed Exposed Cut Copper Stairs" + }, + { + "id": 126, + "stackSize": 64, + "name": "waxed_weathered_cut_copper_stairs", + "displayName": "Waxed Weathered Cut Copper Stairs" + }, + { + "id": 127, + "stackSize": 64, + "name": "waxed_oxidized_cut_copper_stairs", + "displayName": "Waxed Oxidized Cut Copper Stairs" + }, + { + "id": 128, + "stackSize": 64, + "name": "waxed_cut_copper_slab", + "displayName": "Waxed Cut Copper Slab" + }, + { + "id": 129, + "stackSize": 64, + "name": "waxed_exposed_cut_copper_slab", + "displayName": "Waxed Exposed Cut Copper Slab" + }, + { + "id": 130, + "stackSize": 64, + "name": "waxed_weathered_cut_copper_slab", + "displayName": "Waxed Weathered Cut Copper Slab" + }, + { + "id": 131, + "stackSize": 64, + "name": "waxed_oxidized_cut_copper_slab", + "displayName": "Waxed Oxidized Cut Copper Slab" + }, + { + "id": 132, + "stackSize": 64, + "name": "oak_log", + "displayName": "Oak Log" + }, + { + "id": 133, + "stackSize": 64, + "name": "spruce_log", + "displayName": "Spruce Log" + }, + { + "id": 134, + "stackSize": 64, + "name": "birch_log", + "displayName": "Birch Log" + }, + { + "id": 135, + "stackSize": 64, + "name": "jungle_log", + "displayName": "Jungle Log" + }, + { + "id": 136, + "stackSize": 64, + "name": "acacia_log", + "displayName": "Acacia Log" + }, + { + "id": 137, + "stackSize": 64, + "name": "cherry_log", + "displayName": "Cherry Log" + }, + { + "id": 138, + "stackSize": 64, + "name": "dark_oak_log", + "displayName": "Dark Oak Log" + }, + { + "id": 139, + "stackSize": 64, + "name": "mangrove_log", + "displayName": "Mangrove Log" + }, + { + "id": 140, + "stackSize": 64, + "name": "mangrove_roots", + "displayName": "Mangrove Roots" + }, + { + "id": 141, + "stackSize": 64, + "name": "muddy_mangrove_roots", + "displayName": "Muddy Mangrove Roots" + }, + { + "id": 142, + "stackSize": 64, + "name": "crimson_stem", + "displayName": "Crimson Stem" + }, + { + "id": 143, + "stackSize": 64, + "name": "warped_stem", + "displayName": "Warped Stem" + }, + { + "id": 144, + "stackSize": 64, + "name": "bamboo_block", + "displayName": "Block of Bamboo" + }, + { + "id": 145, + "stackSize": 64, + "name": "stripped_oak_log", + "displayName": "Stripped Oak Log" + }, + { + "id": 146, + "stackSize": 64, + "name": "stripped_spruce_log", + "displayName": "Stripped Spruce Log" + }, + { + "id": 147, + "stackSize": 64, + "name": "stripped_birch_log", + "displayName": "Stripped Birch Log" + }, + { + "id": 148, + "stackSize": 64, + "name": "stripped_jungle_log", + "displayName": "Stripped Jungle Log" + }, + { + "id": 149, + "stackSize": 64, + "name": "stripped_acacia_log", + "displayName": "Stripped Acacia Log" + }, + { + "id": 150, + "stackSize": 64, + "name": "stripped_cherry_log", + "displayName": "Stripped Cherry Log" + }, + { + "id": 151, + "stackSize": 64, + "name": "stripped_dark_oak_log", + "displayName": "Stripped Dark Oak Log" + }, + { + "id": 152, + "stackSize": 64, + "name": "stripped_mangrove_log", + "displayName": "Stripped Mangrove Log" + }, + { + "id": 153, + "stackSize": 64, + "name": "stripped_crimson_stem", + "displayName": "Stripped Crimson Stem" + }, + { + "id": 154, + "stackSize": 64, + "name": "stripped_warped_stem", + "displayName": "Stripped Warped Stem" + }, + { + "id": 155, + "stackSize": 64, + "name": "stripped_oak_wood", + "displayName": "Stripped Oak Wood" + }, + { + "id": 156, + "stackSize": 64, + "name": "stripped_spruce_wood", + "displayName": "Stripped Spruce Wood" + }, + { + "id": 157, + "stackSize": 64, + "name": "stripped_birch_wood", + "displayName": "Stripped Birch Wood" + }, + { + "id": 158, + "stackSize": 64, + "name": "stripped_jungle_wood", + "displayName": "Stripped Jungle Wood" + }, + { + "id": 159, + "stackSize": 64, + "name": "stripped_acacia_wood", + "displayName": "Stripped Acacia Wood" + }, + { + "id": 160, + "stackSize": 64, + "name": "stripped_cherry_wood", + "displayName": "Stripped Cherry Wood" + }, + { + "id": 161, + "stackSize": 64, + "name": "stripped_dark_oak_wood", + "displayName": "Stripped Dark Oak Wood" + }, + { + "id": 162, + "stackSize": 64, + "name": "stripped_mangrove_wood", + "displayName": "Stripped Mangrove Wood" + }, + { + "id": 163, + "stackSize": 64, + "name": "stripped_crimson_hyphae", + "displayName": "Stripped Crimson Hyphae" + }, + { + "id": 164, + "stackSize": 64, + "name": "stripped_warped_hyphae", + "displayName": "Stripped Warped Hyphae" + }, + { + "id": 165, + "stackSize": 64, + "name": "stripped_bamboo_block", + "displayName": "Block of Stripped Bamboo" + }, + { + "id": 166, + "stackSize": 64, + "name": "oak_wood", + "displayName": "Oak Wood" + }, + { + "id": 167, + "stackSize": 64, + "name": "spruce_wood", + "displayName": "Spruce Wood" + }, + { + "id": 168, + "stackSize": 64, + "name": "birch_wood", + "displayName": "Birch Wood" + }, + { + "id": 169, + "stackSize": 64, + "name": "jungle_wood", + "displayName": "Jungle Wood" + }, + { + "id": 170, + "stackSize": 64, + "name": "acacia_wood", + "displayName": "Acacia Wood" + }, + { + "id": 171, + "stackSize": 64, + "name": "cherry_wood", + "displayName": "Cherry Wood" + }, + { + "id": 172, + "stackSize": 64, + "name": "dark_oak_wood", + "displayName": "Dark Oak Wood" + }, + { + "id": 173, + "stackSize": 64, + "name": "mangrove_wood", + "displayName": "Mangrove Wood" + }, + { + "id": 174, + "stackSize": 64, + "name": "crimson_hyphae", + "displayName": "Crimson Hyphae" + }, + { + "id": 175, + "stackSize": 64, + "name": "warped_hyphae", + "displayName": "Warped Hyphae" + }, + { + "id": 176, + "stackSize": 64, + "name": "oak_leaves", + "displayName": "Oak Leaves" + }, + { + "id": 177, + "stackSize": 64, + "name": "spruce_leaves", + "displayName": "Spruce Leaves" + }, + { + "id": 178, + "stackSize": 64, + "name": "birch_leaves", + "displayName": "Birch Leaves" + }, + { + "id": 179, + "stackSize": 64, + "name": "jungle_leaves", + "displayName": "Jungle Leaves" + }, + { + "id": 180, + "stackSize": 64, + "name": "acacia_leaves", + "displayName": "Acacia Leaves" + }, + { + "id": 181, + "stackSize": 64, + "name": "cherry_leaves", + "displayName": "Cherry Leaves" + }, + { + "id": 182, + "stackSize": 64, + "name": "dark_oak_leaves", + "displayName": "Dark Oak Leaves" + }, + { + "id": 183, + "stackSize": 64, + "name": "mangrove_leaves", + "displayName": "Mangrove Leaves" + }, + { + "id": 184, + "stackSize": 64, + "name": "azalea_leaves", + "displayName": "Azalea Leaves" + }, + { + "id": 185, + "stackSize": 64, + "name": "azalea_leaves_flowered", + "displayName": "Flowering Azalea Leaves" + }, + { + "id": 186, + "displayName": "Sponge", + "name": "sponge", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 187, + "name": "wet_sponge", + "displayName": "Wet Sponge", + "stackSize": 64 + } + ] + }, + { + "id": 188, + "stackSize": 64, + "name": "glass", + "displayName": "Glass" + }, + { + "id": 189, + "stackSize": 64, + "name": "tinted_glass", + "displayName": "Tinted Glass" + }, + { + "id": 190, + "stackSize": 64, + "name": "lapis_block", + "displayName": "Block of Lapis Lazuli" + }, + { + "id": 191, + "displayName": "Sandstone", + "name": "sandstone", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 192, + "name": "chiseled_sandstone", + "displayName": "Chiseled Sandstone", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 193, + "name": "cut_sandstone", + "displayName": "Cut Sandstone", + "stackSize": 64 + }, + { + "metadata": 3, + "id": 283, + "name": "smooth_sandstone", + "displayName": "Smooth Sandstone", + "stackSize": 64 + } + ] + }, + { + "id": 194, + "stackSize": 64, + "name": "web", + "displayName": "Cobweb" + }, + { + "id": 195, + "stackSize": 64, + "name": "short_grass", + "displayName": "Short Grass" + }, + { + "id": 196, + "stackSize": 64, + "name": "fern", + "displayName": "Fern" + }, + { + "id": 197, + "stackSize": 64, + "name": "azalea", + "displayName": "Azalea" + }, + { + "id": 198, + "stackSize": 64, + "name": "flowering_azalea", + "displayName": "Flowering Azalea" + }, + { + "id": 199, + "stackSize": 64, + "name": "deadbush", + "displayName": "Dead Bush" + }, + { + "id": 200, + "stackSize": 64, + "name": "seagrass", + "displayName": "Seagrass" + }, + { + "id": 201, + "stackSize": 64, + "name": "sea_pickle", + "displayName": "Sea Pickle" + }, + { + "id": 202, + "stackSize": 64, + "name": "white_wool", + "displayName": "White Wool" + }, + { + "id": 203, + "stackSize": 64, + "name": "orange_wool", + "displayName": "Orange Wool" + }, + { + "id": 204, + "stackSize": 64, + "name": "magenta_wool", + "displayName": "Magenta Wool" + }, + { + "id": 205, + "stackSize": 64, + "name": "light_blue_wool", + "displayName": "Light Blue Wool" + }, + { + "id": 206, + "stackSize": 64, + "name": "yellow_wool", + "displayName": "Yellow Wool" + }, + { + "id": 207, + "stackSize": 64, + "name": "lime_wool", + "displayName": "Lime Wool" + }, + { + "id": 208, + "stackSize": 64, + "name": "pink_wool", + "displayName": "Pink Wool" + }, + { + "id": 209, + "stackSize": 64, + "name": "gray_wool", + "displayName": "Gray Wool" + }, + { + "id": 210, + "stackSize": 64, + "name": "light_gray_wool", + "displayName": "Light Gray Wool" + }, + { + "id": 211, + "stackSize": 64, + "name": "cyan_wool", + "displayName": "Cyan Wool" + }, + { + "id": 212, + "stackSize": 64, + "name": "purple_wool", + "displayName": "Purple Wool" + }, + { + "id": 213, + "stackSize": 64, + "name": "blue_wool", + "displayName": "Blue Wool" + }, + { + "id": 214, + "stackSize": 64, + "name": "brown_wool", + "displayName": "Brown Wool" + }, + { + "id": 215, + "stackSize": 64, + "name": "green_wool", + "displayName": "Green Wool" + }, + { + "id": 216, + "stackSize": 64, + "name": "red_wool", + "displayName": "Red Wool" + }, + { + "id": 217, + "stackSize": 64, + "name": "black_wool", + "displayName": "Black Wool" + }, + { + "id": 218, + "stackSize": 64, + "name": "yellow_flower", + "displayName": "Dandelion" + }, + { + "id": 219, + "stackSize": 64, + "name": "poppy", + "displayName": "Poppy" + }, + { + "id": 220, + "stackSize": 64, + "name": "blue_orchid", + "displayName": "Blue Orchid" + }, + { + "id": 221, + "stackSize": 64, + "name": "allium", + "displayName": "Allium" + }, + { + "id": 222, + "stackSize": 64, + "name": "azure_bluet", + "displayName": "Azure Bluet" + }, + { + "id": 223, + "stackSize": 64, + "name": "red_tulip", + "displayName": "Red Tulip" + }, + { + "id": 224, + "stackSize": 64, + "name": "orange_tulip", + "displayName": "Orange Tulip" + }, + { + "id": 225, + "stackSize": 64, + "name": "white_tulip", + "displayName": "White Tulip" + }, + { + "id": 226, + "stackSize": 64, + "name": "pink_tulip", + "displayName": "Pink Tulip" + }, + { + "id": 227, + "stackSize": 64, + "name": "oxeye_daisy", + "displayName": "Oxeye Daisy" + }, + { + "id": 228, + "stackSize": 64, + "name": "cornflower", + "displayName": "Cornflower" + }, + { + "id": 229, + "stackSize": 64, + "name": "lily_of_the_valley", + "displayName": "Lily of the Valley" + }, + { + "id": 230, + "stackSize": 64, + "name": "wither_rose", + "displayName": "Wither Rose" + }, + { + "id": 231, + "stackSize": 64, + "name": "torchflower", + "displayName": "Torchflower" + }, + { + "id": 232, + "stackSize": 64, + "name": "pitcher_plant", + "displayName": "Pitcher Plant" + }, + { + "id": 233, + "stackSize": 64, + "name": "spore_blossom", + "displayName": "Spore Blossom" + }, + { + "id": 234, + "stackSize": 64, + "name": "brown_mushroom", + "displayName": "Brown Mushroom" + }, + { + "id": 235, + "stackSize": 64, + "name": "red_mushroom", + "displayName": "Red Mushroom" + }, + { + "id": 236, + "stackSize": 64, + "name": "crimson_fungus", + "displayName": "Crimson Fungus" + }, + { + "id": 237, + "stackSize": 64, + "name": "warped_fungus", + "displayName": "Warped Fungus" + }, + { + "id": 238, + "stackSize": 64, + "name": "crimson_roots", + "displayName": "Crimson Roots" + }, + { + "id": 239, + "stackSize": 64, + "name": "warped_roots", + "displayName": "Warped Roots" + }, + { + "id": 240, + "stackSize": 64, + "name": "nether_sprouts", + "displayName": "Nether Sprouts" + }, + { + "id": 241, + "stackSize": 64, + "name": "weeping_vines", + "displayName": "Weeping Vines" + }, + { + "id": 242, + "stackSize": 64, + "name": "twisting_vines", + "displayName": "Twisting Vines" + }, + { + "id": 243, + "stackSize": 64, + "name": "sugar_cane", + "displayName": "Sugar Cane" + }, + { + "id": 244, + "stackSize": 64, + "name": "kelp", + "displayName": "Kelp" + }, + { + "id": 245, + "stackSize": 64, + "name": "moss_carpet", + "displayName": "Moss Carpet" + }, + { + "id": 246, + "stackSize": 64, + "name": "pink_petals", + "displayName": "Pink Petals" + }, + { + "id": 247, + "stackSize": 64, + "name": "moss_block", + "displayName": "Moss Block" + }, + { + "id": 248, + "stackSize": 64, + "name": "hanging_roots", + "displayName": "Hanging Roots" + }, + { + "id": 249, + "stackSize": 64, + "name": "big_dripleaf", + "displayName": "Big Dripleaf" + }, + { + "id": 250, + "stackSize": 64, + "name": "small_dripleaf_block", + "displayName": "Small Dripleaf" + }, + { + "id": 251, + "stackSize": 64, + "name": "bamboo", + "displayName": "Bamboo" + }, + { + "id": 252, + "stackSize": 64, + "name": "oak_slab", + "displayName": "Oak Slab" + }, + { + "id": 253, + "stackSize": 64, + "name": "spruce_slab", + "displayName": "Spruce Slab" + }, + { + "id": 254, + "stackSize": 64, + "name": "birch_slab", + "displayName": "Birch Slab" + }, + { + "id": 255, + "stackSize": 64, + "name": "jungle_slab", + "displayName": "Jungle Slab" + }, + { + "id": 256, + "stackSize": 64, + "name": "acacia_slab", + "displayName": "Acacia Slab" + }, + { + "id": 257, + "stackSize": 64, + "name": "cherry_slab", + "displayName": "Cherry Slab" + }, + { + "id": 258, + "stackSize": 64, + "name": "dark_oak_slab", + "displayName": "Dark Oak Slab" + }, + { + "id": 259, + "stackSize": 64, + "name": "mangrove_slab", + "displayName": "Mangrove Slab" + }, + { + "id": 260, + "stackSize": 64, + "name": "bamboo_slab", + "displayName": "Bamboo Slab" + }, + { + "id": 261, + "stackSize": 64, + "name": "bamboo_mosaic_slab", + "displayName": "Bamboo Mosaic Slab" + }, + { + "id": 262, + "stackSize": 64, + "name": "crimson_slab", + "displayName": "Crimson Slab" + }, + { + "id": 263, + "stackSize": 64, + "name": "warped_slab", + "displayName": "Warped Slab" + }, + { + "id": 265, + "stackSize": 64, + "name": "smooth_stone_slab", + "displayName": "Smooth Stone Slab" + }, + { + "id": 266, + "stackSize": 64, + "name": "sandstone_slab", + "displayName": "Sandstone Slab" + }, + { + "id": 268, + "stackSize": 64, + "name": "petrified_oak_slab", + "displayName": "Petrified Oak Slab" + }, + { + "id": 269, + "stackSize": 64, + "name": "cobblestone_slab", + "displayName": "Cobblestone Slab" + }, + { + "id": 270, + "stackSize": 64, + "name": "brick_slab", + "displayName": "Brick Slab" + }, + { + "id": 271, + "stackSize": 64, + "name": "stone_brick_slab", + "displayName": "Stone Brick Slab" + }, + { + "id": 272, + "stackSize": 64, + "name": "mud_brick_slab", + "displayName": "Mud Brick Slab" + }, + { + "id": 273, + "stackSize": 64, + "name": "nether_brick_slab", + "displayName": "Nether Brick Slab" + }, + { + "id": 274, + "stackSize": 64, + "name": "quartz_slab", + "displayName": "Quartz Slab" + }, + { + "id": 275, + "displayName": "Red Sandstone Slab", + "name": "stone_block_slab2", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 277, + "name": "purpur_slab", + "displayName": "Purpur Slab", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 278, + "name": "prismarine_slab", + "displayName": "Prismarine Slab", + "stackSize": 64 + }, + { + "metadata": 3, + "id": 280, + "name": "dark_prismarine_slab", + "displayName": "Dark Prismarine Slab", + "stackSize": 64 + }, + { + "metadata": 4, + "id": 279, + "name": "prismarine_brick_slab", + "displayName": "Prismarine Brick Slab", + "stackSize": 64 + }, + { + "metadata": 5, + "id": 643, + "name": "mossy_cobblestone_slab", + "displayName": "Mossy Cobblestone Slab", + "stackSize": 64 + }, + { + "metadata": 6, + "id": 645, + "name": "smooth_sandstone_slab", + "displayName": "Smooth Sandstone Slab", + "stackSize": 64 + }, + { + "metadata": 7, + "id": 649, + "name": "red_nether_brick_slab", + "displayName": "Red Nether Brick Slab", + "stackSize": 64 + } + ] + }, + { + "id": 284, + "stackSize": 64, + "name": "smooth_stone", + "displayName": "Smooth Stone" + }, + { + "id": 285, + "stackSize": 64, + "name": "brick_block", + "displayName": "Bricks" + }, + { + "id": 286, + "stackSize": 64, + "name": "bookshelf", + "displayName": "Bookshelf" + }, + { + "id": 287, + "stackSize": 64, + "name": "chiseled_bookshelf", + "displayName": "Chiseled Bookshelf" + }, + { + "id": 288, + "stackSize": 64, + "name": "decorated_pot", + "displayName": "Decorated Pot" + }, + { + "id": 289, + "stackSize": 64, + "name": "mossy_cobblestone", + "displayName": "Mossy Cobblestone" + }, + { + "id": 290, + "stackSize": 64, + "name": "obsidian", + "displayName": "Obsidian" + }, + { + "id": 291, + "stackSize": 64, + "name": "torch", + "displayName": "Torch" + }, + { + "id": 292, + "stackSize": 64, + "name": "end_rod", + "displayName": "End Rod" + }, + { + "id": 293, + "stackSize": 64, + "name": "chorus_plant", + "displayName": "Chorus Plant" + }, + { + "id": 294, + "stackSize": 64, + "name": "chorus_flower", + "displayName": "Chorus Flower" + }, + { + "id": 295, + "displayName": "Purpur Block", + "name": "purpur_block", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 2, + "id": 296, + "name": "purpur_pillar", + "displayName": "Purpur Pillar", + "stackSize": 64 + } + ] + }, + { + "id": 297, + "stackSize": 64, + "name": "purpur_stairs", + "displayName": "Purpur Stairs" + }, + { + "id": 298, + "stackSize": 64, + "name": "mob_spawner", + "displayName": "Monster Spawner" + }, + { + "id": 299, + "stackSize": 64, + "name": "chest", + "displayName": "Chest" + }, + { + "id": 300, + "stackSize": 64, + "name": "crafting_table", + "displayName": "Crafting Table" + }, + { + "id": 301, + "stackSize": 64, + "name": "farmland", + "displayName": "Farmland" + }, + { + "id": 302, + "stackSize": 64, + "name": "furnace", + "displayName": "Furnace" + }, + { + "id": 303, + "stackSize": 64, + "name": "ladder", + "displayName": "Ladder" + }, + { + "id": 304, + "stackSize": 64, + "name": "stone_stairs", + "displayName": "Cobblestone Stairs" + }, + { + "id": 305, + "stackSize": 64, + "name": "snow_layer", + "displayName": "Snow" + }, + { + "id": 306, + "stackSize": 64, + "name": "ice", + "displayName": "Ice" + }, + { + "id": 307, + "stackSize": 64, + "name": "snow", + "displayName": "Snow Block" + }, + { + "id": 308, + "stackSize": 64, + "name": "cactus", + "displayName": "Cactus" + }, + { + "id": 309, + "stackSize": 64, + "name": "clay", + "displayName": "Clay" + }, + { + "id": 310, + "stackSize": 64, + "name": "jukebox", + "displayName": "Jukebox" + }, + { + "id": 311, + "stackSize": 64, + "name": "oak_fence", + "displayName": "Oak Fence" + }, + { + "id": 312, + "stackSize": 64, + "name": "spruce_fence", + "displayName": "Spruce Fence" + }, + { + "id": 313, + "stackSize": 64, + "name": "birch_fence", + "displayName": "Birch Fence" + }, + { + "id": 314, + "stackSize": 64, + "name": "jungle_fence", + "displayName": "Jungle Fence" + }, + { + "id": 315, + "stackSize": 64, + "name": "acacia_fence", + "displayName": "Acacia Fence" + }, + { + "id": 316, + "stackSize": 64, + "name": "cherry_fence", + "displayName": "Cherry Fence" + }, + { + "id": 317, + "stackSize": 64, + "name": "dark_oak_fence", + "displayName": "Dark Oak Fence" + }, + { + "id": 318, + "stackSize": 64, + "name": "mangrove_fence", + "displayName": "Mangrove Fence" + }, + { + "id": 319, + "stackSize": 64, + "name": "bamboo_fence", + "displayName": "Bamboo Fence" + }, + { + "id": 320, + "stackSize": 64, + "name": "crimson_fence", + "displayName": "Crimson Fence" + }, + { + "id": 321, + "stackSize": 64, + "name": "warped_fence", + "displayName": "Warped Fence" + }, + { + "id": 322, + "stackSize": 64, + "name": "pumpkin", + "displayName": "Pumpkin" + }, + { + "id": 323, + "stackSize": 64, + "name": "carved_pumpkin", + "displayName": "Carved Pumpkin", + "enchantCategories": [ + "wearable", + "vanishable" + ] + }, + { + "id": 324, + "stackSize": 64, + "name": "lit_pumpkin", + "displayName": "Jack o'Lantern" + }, + { + "id": 325, + "stackSize": 64, + "name": "netherrack", + "displayName": "Netherrack" + }, + { + "id": 326, + "stackSize": 64, + "name": "soul_sand", + "displayName": "Soul Sand" + }, + { + "id": 327, + "stackSize": 64, + "name": "soul_soil", + "displayName": "Soul Soil" + }, + { + "id": 328, + "stackSize": 64, + "name": "basalt", + "displayName": "Basalt" + }, + { + "id": 329, + "stackSize": 64, + "name": "polished_basalt", + "displayName": "Polished Basalt" + }, + { + "id": 330, + "stackSize": 64, + "name": "smooth_basalt", + "displayName": "Smooth Basalt" + }, + { + "id": 331, + "stackSize": 64, + "name": "soul_torch", + "displayName": "Soul Torch" + }, + { + "id": 332, + "stackSize": 64, + "name": "glowstone", + "displayName": "Glowstone" + }, + { + "id": 333, + "displayName": "Infested Stone", + "name": "monster_egg", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 334, + "name": "infested_cobblestone", + "displayName": "Infested Cobblestone", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 335, + "name": "infested_stone_bricks", + "displayName": "Infested Stone Bricks", + "stackSize": 64 + }, + { + "metadata": 3, + "id": 336, + "name": "infested_mossy_stone_bricks", + "displayName": "Infested Mossy Stone Bricks", + "stackSize": 64 + }, + { + "metadata": 4, + "id": 337, + "name": "infested_cracked_stone_bricks", + "displayName": "Infested Cracked Stone Bricks", + "stackSize": 64 + }, + { + "metadata": 5, + "id": 338, + "name": "infested_chiseled_stone_bricks", + "displayName": "Infested Chiseled Stone Bricks", + "stackSize": 64 + } + ] + }, + { + "id": 339, + "stackSize": 64, + "name": "infested_deepslate", + "displayName": "Infested Deepslate" + }, + { + "id": 340, + "displayName": "Stone Bricks", + "name": "stonebrick", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 341, + "name": "mossy_stone_bricks", + "displayName": "Mossy Stone Bricks", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 342, + "name": "cracked_stone_bricks", + "displayName": "Cracked Stone Bricks", + "stackSize": 64 + }, + { + "metadata": 3, + "id": 343, + "name": "chiseled_stone_bricks", + "displayName": "Chiseled Stone Bricks", + "stackSize": 64 + } + ] + }, + { + "id": 344, + "stackSize": 64, + "name": "packed_mud", + "displayName": "Packed Mud" + }, + { + "id": 345, + "stackSize": 64, + "name": "mud_bricks", + "displayName": "Mud Bricks" + }, + { + "id": 346, + "stackSize": 64, + "name": "deepslate_bricks", + "displayName": "Deepslate Bricks" + }, + { + "id": 347, + "stackSize": 64, + "name": "cracked_deepslate_bricks", + "displayName": "Cracked Deepslate Bricks" + }, + { + "id": 348, + "stackSize": 64, + "name": "deepslate_tiles", + "displayName": "Deepslate Tiles" + }, + { + "id": 349, + "stackSize": 64, + "name": "cracked_deepslate_tiles", + "displayName": "Cracked Deepslate Tiles" + }, + { + "id": 350, + "stackSize": 64, + "name": "chiseled_deepslate", + "displayName": "Chiseled Deepslate" + }, + { + "id": 351, + "stackSize": 64, + "name": "reinforced_deepslate", + "displayName": "Reinforced Deepslate" + }, + { + "id": 352, + "displayName": "Brown Mushroom Block", + "name": "brown_mushroom_block", + "stackSize": 64, + "metadata": 14, + "variations": [ + { + "metadata": 15, + "id": 354, + "name": "mushroom_stem", + "displayName": "Mushroom Stem", + "stackSize": 64 + } + ] + }, + { + "id": 353, + "stackSize": 64, + "name": "red_mushroom_block", + "displayName": "Red Mushroom Block" + }, + { + "id": 355, + "stackSize": 64, + "name": "iron_bars", + "displayName": "Iron Bars" + }, + { + "id": 356, + "stackSize": 64, + "name": "chain", + "displayName": "Chain" + }, + { + "id": 357, + "stackSize": 64, + "name": "glass_pane", + "displayName": "Glass Pane" + }, + { + "id": 358, + "stackSize": 64, + "name": "melon_block", + "displayName": "Melon" + }, + { + "id": 359, + "stackSize": 64, + "name": "vine", + "displayName": "Vines" + }, + { + "id": 360, + "stackSize": 64, + "name": "glow_lichen", + "displayName": "Glow Lichen" + }, + { + "id": 361, + "stackSize": 64, + "name": "brick_stairs", + "displayName": "Brick Stairs" + }, + { + "id": 362, + "stackSize": 64, + "name": "stone_brick_stairs", + "displayName": "Stone Brick Stairs" + }, + { + "id": 363, + "stackSize": 64, + "name": "mud_brick_stairs", + "displayName": "Mud Brick Stairs" + }, + { + "id": 364, + "stackSize": 64, + "name": "mycelium", + "displayName": "Mycelium" + }, + { + "id": 365, + "stackSize": 64, + "name": "waterlily", + "displayName": "Lily Pad" + }, + { + "id": 366, + "stackSize": 64, + "name": "nether_brick", + "displayName": "Nether Bricks" + }, + { + "id": 367, + "stackSize": 64, + "name": "cracked_nether_bricks", + "displayName": "Cracked Nether Bricks" + }, + { + "id": 368, + "stackSize": 64, + "name": "chiseled_nether_bricks", + "displayName": "Chiseled Nether Bricks" + }, + { + "id": 369, + "stackSize": 64, + "name": "nether_brick_fence", + "displayName": "Nether Brick Fence" + }, + { + "id": 370, + "stackSize": 64, + "name": "nether_brick_stairs", + "displayName": "Nether Brick Stairs" + }, + { + "id": 371, + "stackSize": 64, + "name": "sculk", + "displayName": "Sculk" + }, + { + "id": 372, + "stackSize": 64, + "name": "sculk_vein", + "displayName": "Sculk Vein" + }, + { + "id": 373, + "stackSize": 64, + "name": "sculk_catalyst", + "displayName": "Sculk Catalyst" + }, + { + "id": 374, + "stackSize": 64, + "name": "sculk_shrieker", + "displayName": "Sculk Shrieker" + }, + { + "id": 375, + "stackSize": 64, + "name": "enchanting_table", + "displayName": "Enchanting Table" + }, + { + "id": 376, + "stackSize": 64, + "name": "end_portal_frame", + "displayName": "End Portal Frame" + }, + { + "id": 377, + "stackSize": 64, + "name": "end_stone", + "displayName": "End Stone" + }, + { + "id": 378, + "stackSize": 64, + "name": "end_bricks", + "displayName": "End Stone Bricks" + }, + { + "id": 379, + "stackSize": 64, + "name": "dragon_egg", + "displayName": "Dragon Egg" + }, + { + "id": 380, + "stackSize": 64, + "name": "sandstone_stairs", + "displayName": "Sandstone Stairs" + }, + { + "id": 381, + "stackSize": 64, + "name": "ender_chest", + "displayName": "Ender Chest" + }, + { + "id": 382, + "stackSize": 64, + "name": "emerald_block", + "displayName": "Block of Emerald" + }, + { + "id": 383, + "stackSize": 64, + "name": "oak_stairs", + "displayName": "Oak Stairs" + }, + { + "id": 384, + "stackSize": 64, + "name": "spruce_stairs", + "displayName": "Spruce Stairs" + }, + { + "id": 385, + "stackSize": 64, + "name": "birch_stairs", + "displayName": "Birch Stairs" + }, + { + "id": 386, + "stackSize": 64, + "name": "jungle_stairs", + "displayName": "Jungle Stairs" + }, + { + "id": 387, + "stackSize": 64, + "name": "acacia_stairs", + "displayName": "Acacia Stairs" + }, + { + "id": 388, + "stackSize": 64, + "name": "cherry_stairs", + "displayName": "Cherry Stairs" + }, + { + "id": 389, + "stackSize": 64, + "name": "dark_oak_stairs", + "displayName": "Dark Oak Stairs" + }, + { + "id": 390, + "stackSize": 64, + "name": "mangrove_stairs", + "displayName": "Mangrove Stairs" + }, + { + "id": 391, + "stackSize": 64, + "name": "bamboo_stairs", + "displayName": "Bamboo Stairs" + }, + { + "id": 392, + "stackSize": 64, + "name": "bamboo_mosaic_stairs", + "displayName": "Bamboo Mosaic Stairs" + }, + { + "id": 393, + "stackSize": 64, + "name": "crimson_stairs", + "displayName": "Crimson Stairs" + }, + { + "id": 394, + "stackSize": 64, + "name": "warped_stairs", + "displayName": "Warped Stairs" + }, + { + "id": 395, + "stackSize": 64, + "name": "command_block", + "displayName": "Command Block" + }, + { + "id": 396, + "stackSize": 64, + "name": "beacon", + "displayName": "Beacon" + }, + { + "id": 397, + "displayName": "Cobblestone Wall", + "name": "cobblestone_wall", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 398, + "name": "mossy_cobblestone_wall", + "displayName": "Mossy Cobblestone Wall", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 403, + "name": "granite_wall", + "displayName": "Granite Wall", + "stackSize": 64 + }, + { + "metadata": 3, + "id": 411, + "name": "diorite_wall", + "displayName": "Diorite Wall", + "stackSize": 64 + }, + { + "metadata": 4, + "id": 407, + "name": "andesite_wall", + "displayName": "Andesite Wall", + "stackSize": 64 + }, + { + "metadata": 5, + "id": 409, + "name": "sandstone_wall", + "displayName": "Sandstone Wall", + "stackSize": 64 + }, + { + "metadata": 6, + "id": 399, + "name": "brick_wall", + "displayName": "Brick Wall", + "stackSize": 64 + }, + { + "metadata": 7, + "id": 404, + "name": "stone_brick_wall", + "displayName": "Stone Brick Wall", + "stackSize": 64 + }, + { + "metadata": 8, + "id": 402, + "name": "mossy_stone_brick_wall", + "displayName": "Mossy Stone Brick Wall", + "stackSize": 64 + }, + { + "metadata": 9, + "id": 406, + "name": "nether_brick_wall", + "displayName": "Nether Brick Wall", + "stackSize": 64 + }, + { + "metadata": 10, + "id": 410, + "name": "end_stone_brick_wall", + "displayName": "End Stone Brick Wall", + "stackSize": 64 + }, + { + "metadata": 11, + "id": 400, + "name": "prismarine_wall", + "displayName": "Prismarine Wall", + "stackSize": 64 + }, + { + "metadata": 12, + "id": 401, + "name": "red_sandstone_wall", + "displayName": "Red Sandstone Wall", + "stackSize": 64 + }, + { + "metadata": 13, + "id": 408, + "name": "red_nether_brick_wall", + "displayName": "Red Nether Brick Wall", + "stackSize": 64 + } + ] + }, + { + "id": 405, + "stackSize": 64, + "name": "mud_brick_wall", + "displayName": "Mud Brick Wall" + }, + { + "id": 412, + "stackSize": 64, + "name": "blackstone_wall", + "displayName": "Blackstone Wall" + }, + { + "id": 413, + "stackSize": 64, + "name": "polished_blackstone_wall", + "displayName": "Polished Blackstone Wall" + }, + { + "id": 414, + "stackSize": 64, + "name": "polished_blackstone_brick_wall", + "displayName": "Polished Blackstone Brick Wall" + }, + { + "id": 415, + "stackSize": 64, + "name": "cobbled_deepslate_wall", + "displayName": "Cobbled Deepslate Wall" + }, + { + "id": 416, + "stackSize": 64, + "name": "polished_deepslate_wall", + "displayName": "Polished Deepslate Wall" + }, + { + "id": 417, + "stackSize": 64, + "name": "deepslate_brick_wall", + "displayName": "Deepslate Brick Wall" + }, + { + "id": 418, + "stackSize": 64, + "name": "deepslate_tile_wall", + "displayName": "Deepslate Tile Wall" + }, + { + "id": 419, + "displayName": "Anvil", + "name": "anvil", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 4, + "id": 420, + "name": "chipped_anvil", + "displayName": "Chipped Anvil", + "stackSize": 64 + }, + { + "metadata": 8, + "id": 421, + "name": "damaged_anvil", + "displayName": "Damaged Anvil", + "stackSize": 64 + } + ] + }, + { + "id": 423, + "displayName": "Block of Quartz", + "name": "quartz_block", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 422, + "name": "chiseled_quartz_block", + "displayName": "Chiseled Quartz Block", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 425, + "name": "quartz_pillar", + "displayName": "Quartz Pillar", + "stackSize": 64 + }, + { + "metadata": 3, + "id": 281, + "name": "smooth_quartz", + "displayName": "Smooth Quartz Block", + "stackSize": 64 + } + ] + }, + { + "id": 424, + "stackSize": 64, + "name": "quartz_bricks", + "displayName": "Quartz Bricks" + }, + { + "id": 426, + "stackSize": 64, + "name": "quartz_stairs", + "displayName": "Quartz Stairs" + }, + { + "id": 427, + "stackSize": 64, + "name": "white_terracotta", + "displayName": "White Terracotta" + }, + { + "id": 428, + "stackSize": 64, + "name": "orange_terracotta", + "displayName": "Orange Terracotta" + }, + { + "id": 429, + "stackSize": 64, + "name": "magenta_terracotta", + "displayName": "Magenta Terracotta" + }, + { + "id": 430, + "stackSize": 64, + "name": "light_blue_terracotta", + "displayName": "Light Blue Terracotta" + }, + { + "id": 431, + "stackSize": 64, + "name": "yellow_terracotta", + "displayName": "Yellow Terracotta" + }, + { + "id": 432, + "stackSize": 64, + "name": "lime_terracotta", + "displayName": "Lime Terracotta" + }, + { + "id": 433, + "stackSize": 64, + "name": "pink_terracotta", + "displayName": "Pink Terracotta" + }, + { + "id": 434, + "stackSize": 64, + "name": "gray_terracotta", + "displayName": "Gray Terracotta" + }, + { + "id": 435, + "stackSize": 64, + "name": "light_gray_terracotta", + "displayName": "Light Gray Terracotta" + }, + { + "id": 436, + "stackSize": 64, + "name": "cyan_terracotta", + "displayName": "Cyan Terracotta" + }, + { + "id": 437, + "stackSize": 64, + "name": "purple_terracotta", + "displayName": "Purple Terracotta" + }, + { + "id": 438, + "stackSize": 64, + "name": "blue_terracotta", + "displayName": "Blue Terracotta" + }, + { + "id": 439, + "stackSize": 64, + "name": "brown_terracotta", + "displayName": "Brown Terracotta" + }, + { + "id": 440, + "stackSize": 64, + "name": "green_terracotta", + "displayName": "Green Terracotta" + }, + { + "id": 441, + "stackSize": 64, + "name": "red_terracotta", + "displayName": "Red Terracotta" + }, + { + "id": 442, + "stackSize": 64, + "name": "black_terracotta", + "displayName": "Black Terracotta" + }, + { + "id": 443, + "stackSize": 64, + "name": "barrier", + "displayName": "Barrier" + }, + { + "id": 444, + "stackSize": 64, + "name": "light_block", + "displayName": "Light" + }, + { + "id": 445, + "stackSize": 64, + "name": "hay_block", + "displayName": "Hay Bale" + }, + { + "id": 446, + "stackSize": 64, + "name": "white_carpet", + "displayName": "White Carpet" + }, + { + "id": 447, + "stackSize": 64, + "name": "orange_carpet", + "displayName": "Orange Carpet" + }, + { + "id": 448, + "stackSize": 64, + "name": "magenta_carpet", + "displayName": "Magenta Carpet" + }, + { + "id": 449, + "stackSize": 64, + "name": "light_blue_carpet", + "displayName": "Light Blue Carpet" + }, + { + "id": 450, + "stackSize": 64, + "name": "yellow_carpet", + "displayName": "Yellow Carpet" + }, + { + "id": 451, + "stackSize": 64, + "name": "lime_carpet", + "displayName": "Lime Carpet" + }, + { + "id": 452, + "stackSize": 64, + "name": "pink_carpet", + "displayName": "Pink Carpet" + }, + { + "id": 453, + "stackSize": 64, + "name": "gray_carpet", + "displayName": "Gray Carpet" + }, + { + "id": 454, + "stackSize": 64, + "name": "light_gray_carpet", + "displayName": "Light Gray Carpet" + }, + { + "id": 455, + "stackSize": 64, + "name": "cyan_carpet", + "displayName": "Cyan Carpet" + }, + { + "id": 456, + "stackSize": 64, + "name": "purple_carpet", + "displayName": "Purple Carpet" + }, + { + "id": 457, + "stackSize": 64, + "name": "blue_carpet", + "displayName": "Blue Carpet" + }, + { + "id": 458, + "stackSize": 64, + "name": "brown_carpet", + "displayName": "Brown Carpet" + }, + { + "id": 459, + "stackSize": 64, + "name": "green_carpet", + "displayName": "Green Carpet" + }, + { + "id": 460, + "stackSize": 64, + "name": "red_carpet", + "displayName": "Red Carpet" + }, + { + "id": 461, + "stackSize": 64, + "name": "black_carpet", + "displayName": "Black Carpet" + }, + { + "id": 462, + "stackSize": 64, + "name": "hardened_clay", + "displayName": "Terracotta" + }, + { + "id": 463, + "stackSize": 64, + "name": "packed_ice", + "displayName": "Packed Ice" + }, + { + "id": 464, + "stackSize": 64, + "name": "grass_path", + "displayName": "Dirt Path" + }, + { + "id": 465, + "stackSize": 64, + "name": "sunflower", + "displayName": "Sunflower" + }, + { + "id": 466, + "stackSize": 64, + "name": "lilac", + "displayName": "Lilac" + }, + { + "id": 467, + "stackSize": 64, + "name": "rose_bush", + "displayName": "Rose Bush" + }, + { + "id": 468, + "stackSize": 64, + "name": "peony", + "displayName": "Peony" + }, + { + "id": 469, + "stackSize": 64, + "name": "tall_grass", + "displayName": "Tall Grass" + }, + { + "id": 470, + "stackSize": 64, + "name": "large_fern", + "displayName": "Large Fern" + }, + { + "id": 471, + "stackSize": 64, + "name": "white_stained_glass", + "displayName": "White Stained Glass" + }, + { + "id": 472, + "stackSize": 64, + "name": "orange_stained_glass", + "displayName": "Orange Stained Glass" + }, + { + "id": 473, + "stackSize": 64, + "name": "magenta_stained_glass", + "displayName": "Magenta Stained Glass" + }, + { + "id": 474, + "stackSize": 64, + "name": "light_blue_stained_glass", + "displayName": "Light Blue Stained Glass" + }, + { + "id": 475, + "stackSize": 64, + "name": "yellow_stained_glass", + "displayName": "Yellow Stained Glass" + }, + { + "id": 476, + "stackSize": 64, + "name": "lime_stained_glass", + "displayName": "Lime Stained Glass" + }, + { + "id": 477, + "stackSize": 64, + "name": "pink_stained_glass", + "displayName": "Pink Stained Glass" + }, + { + "id": 478, + "stackSize": 64, + "name": "gray_stained_glass", + "displayName": "Gray Stained Glass" + }, + { + "id": 479, + "stackSize": 64, + "name": "light_gray_stained_glass", + "displayName": "Light Gray Stained Glass" + }, + { + "id": 480, + "stackSize": 64, + "name": "cyan_stained_glass", + "displayName": "Cyan Stained Glass" + }, + { + "id": 481, + "stackSize": 64, + "name": "purple_stained_glass", + "displayName": "Purple Stained Glass" + }, + { + "id": 482, + "stackSize": 64, + "name": "blue_stained_glass", + "displayName": "Blue Stained Glass" + }, + { + "id": 483, + "stackSize": 64, + "name": "brown_stained_glass", + "displayName": "Brown Stained Glass" + }, + { + "id": 484, + "stackSize": 64, + "name": "green_stained_glass", + "displayName": "Green Stained Glass" + }, + { + "id": 485, + "stackSize": 64, + "name": "red_stained_glass", + "displayName": "Red Stained Glass" + }, + { + "id": 486, + "stackSize": 64, + "name": "black_stained_glass", + "displayName": "Black Stained Glass" + }, + { + "id": 487, + "stackSize": 64, + "name": "white_stained_glass_pane", + "displayName": "White Stained Glass Pane" + }, + { + "id": 488, + "stackSize": 64, + "name": "orange_stained_glass_pane", + "displayName": "Orange Stained Glass Pane" + }, + { + "id": 489, + "stackSize": 64, + "name": "magenta_stained_glass_pane", + "displayName": "Magenta Stained Glass Pane" + }, + { + "id": 490, + "stackSize": 64, + "name": "light_blue_stained_glass_pane", + "displayName": "Light Blue Stained Glass Pane" + }, + { + "id": 491, + "stackSize": 64, + "name": "yellow_stained_glass_pane", + "displayName": "Yellow Stained Glass Pane" + }, + { + "id": 492, + "stackSize": 64, + "name": "lime_stained_glass_pane", + "displayName": "Lime Stained Glass Pane" + }, + { + "id": 493, + "stackSize": 64, + "name": "pink_stained_glass_pane", + "displayName": "Pink Stained Glass Pane" + }, + { + "id": 494, + "stackSize": 64, + "name": "gray_stained_glass_pane", + "displayName": "Gray Stained Glass Pane" + }, + { + "id": 495, + "stackSize": 64, + "name": "light_gray_stained_glass_pane", + "displayName": "Light Gray Stained Glass Pane" + }, + { + "id": 496, + "stackSize": 64, + "name": "cyan_stained_glass_pane", + "displayName": "Cyan Stained Glass Pane" + }, + { + "id": 497, + "stackSize": 64, + "name": "purple_stained_glass_pane", + "displayName": "Purple Stained Glass Pane" + }, + { + "id": 498, + "stackSize": 64, + "name": "blue_stained_glass_pane", + "displayName": "Blue Stained Glass Pane" + }, + { + "id": 499, + "stackSize": 64, + "name": "brown_stained_glass_pane", + "displayName": "Brown Stained Glass Pane" + }, + { + "id": 500, + "stackSize": 64, + "name": "green_stained_glass_pane", + "displayName": "Green Stained Glass Pane" + }, + { + "id": 501, + "stackSize": 64, + "name": "red_stained_glass_pane", + "displayName": "Red Stained Glass Pane" + }, + { + "id": 502, + "stackSize": 64, + "name": "black_stained_glass_pane", + "displayName": "Black Stained Glass Pane" + }, + { + "id": 503, + "displayName": "Prismarine", + "name": "prismarine", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 505, + "name": "dark_prismarine", + "displayName": "Dark Prismarine", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 504, + "name": "prismarine_bricks", + "displayName": "Prismarine Bricks", + "stackSize": 64 + } + ] + }, + { + "id": 506, + "stackSize": 64, + "name": "prismarine_stairs", + "displayName": "Prismarine Stairs" + }, + { + "id": 507, + "stackSize": 64, + "name": "prismarine_bricks_stairs", + "displayName": "Prismarine Brick Stairs" + }, + { + "id": 508, + "stackSize": 64, + "name": "dark_prismarine_stairs", + "displayName": "Dark Prismarine Stairs" + }, + { + "id": 509, + "stackSize": 64, + "name": "sea_lantern", + "displayName": "Sea Lantern" + }, + { + "id": 510, + "displayName": "Red Sandstone", + "name": "red_sandstone", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 511, + "name": "chiseled_red_sandstone", + "displayName": "Chiseled Red Sandstone", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 512, + "name": "cut_red_sandstone", + "displayName": "Cut Red Sandstone", + "stackSize": 64 + }, + { + "metadata": 3, + "id": 282, + "name": "smooth_red_sandstone", + "displayName": "Smooth Red Sandstone", + "stackSize": 64 + } + ] + }, + { + "id": 513, + "stackSize": 64, + "name": "red_sandstone_stairs", + "displayName": "Red Sandstone Stairs" + }, + { + "id": 514, + "stackSize": 64, + "name": "repeating_command_block", + "displayName": "Repeating Command Block" + }, + { + "id": 515, + "stackSize": 64, + "name": "chain_command_block", + "displayName": "Chain Command Block" + }, + { + "id": 516, + "stackSize": 64, + "name": "magma", + "displayName": "Magma Block" + }, + { + "id": 517, + "stackSize": 64, + "name": "nether_wart_block", + "displayName": "Nether Wart Block" + }, + { + "id": 518, + "stackSize": 64, + "name": "warped_wart_block", + "displayName": "Warped Wart Block" + }, + { + "id": 519, + "stackSize": 64, + "name": "red_nether_brick", + "displayName": "Red Nether Bricks" + }, + { + "id": 520, + "stackSize": 64, + "name": "bone_block", + "displayName": "Bone Block" + }, + { + "id": 521, + "stackSize": 64, + "name": "structure_void", + "displayName": "Structure Void" + }, + { + "id": 522, + "stackSize": 1, + "name": "undyed_shulker_box", + "displayName": "Shulker Box" + }, + { + "id": 523, + "stackSize": 1, + "name": "white_shulker_box", + "displayName": "White Shulker Box" + }, + { + "id": 524, + "stackSize": 1, + "name": "orange_shulker_box", + "displayName": "Orange Shulker Box" + }, + { + "id": 525, + "stackSize": 1, + "name": "magenta_shulker_box", + "displayName": "Magenta Shulker Box" + }, + { + "id": 526, + "stackSize": 1, + "name": "light_blue_shulker_box", + "displayName": "Light Blue Shulker Box" + }, + { + "id": 527, + "stackSize": 1, + "name": "yellow_shulker_box", + "displayName": "Yellow Shulker Box" + }, + { + "id": 528, + "stackSize": 1, + "name": "lime_shulker_box", + "displayName": "Lime Shulker Box" + }, + { + "id": 529, + "stackSize": 1, + "name": "pink_shulker_box", + "displayName": "Pink Shulker Box" + }, + { + "id": 530, + "stackSize": 1, + "name": "gray_shulker_box", + "displayName": "Gray Shulker Box" + }, + { + "id": 531, + "stackSize": 1, + "name": "light_gray_shulker_box", + "displayName": "Light Gray Shulker Box" + }, + { + "id": 532, + "stackSize": 1, + "name": "cyan_shulker_box", + "displayName": "Cyan Shulker Box" + }, + { + "id": 533, + "stackSize": 1, + "name": "purple_shulker_box", + "displayName": "Purple Shulker Box" + }, + { + "id": 534, + "stackSize": 1, + "name": "blue_shulker_box", + "displayName": "Blue Shulker Box" + }, + { + "id": 535, + "stackSize": 1, + "name": "brown_shulker_box", + "displayName": "Brown Shulker Box" + }, + { + "id": 536, + "stackSize": 1, + "name": "green_shulker_box", + "displayName": "Green Shulker Box" + }, + { + "id": 537, + "stackSize": 1, + "name": "red_shulker_box", + "displayName": "Red Shulker Box" + }, + { + "id": 538, + "stackSize": 1, + "name": "black_shulker_box", + "displayName": "Black Shulker Box" + }, + { + "id": 539, + "stackSize": 64, + "name": "white_glazed_terracotta", + "displayName": "White Glazed Terracotta" + }, + { + "id": 540, + "stackSize": 64, + "name": "orange_glazed_terracotta", + "displayName": "Orange Glazed Terracotta" + }, + { + "id": 541, + "stackSize": 64, + "name": "magenta_glazed_terracotta", + "displayName": "Magenta Glazed Terracotta" + }, + { + "id": 542, + "stackSize": 64, + "name": "light_blue_glazed_terracotta", + "displayName": "Light Blue Glazed Terracotta" + }, + { + "id": 543, + "stackSize": 64, + "name": "yellow_glazed_terracotta", + "displayName": "Yellow Glazed Terracotta" + }, + { + "id": 544, + "stackSize": 64, + "name": "lime_glazed_terracotta", + "displayName": "Lime Glazed Terracotta" + }, + { + "id": 545, + "stackSize": 64, + "name": "pink_glazed_terracotta", + "displayName": "Pink Glazed Terracotta" + }, + { + "id": 546, + "stackSize": 64, + "name": "gray_glazed_terracotta", + "displayName": "Gray Glazed Terracotta" + }, + { + "id": 547, + "stackSize": 64, + "name": "silver_glazed_terracotta", + "displayName": "Light Gray Glazed Terracotta" + }, + { + "id": 548, + "stackSize": 64, + "name": "cyan_glazed_terracotta", + "displayName": "Cyan Glazed Terracotta" + }, + { + "id": 549, + "stackSize": 64, + "name": "purple_glazed_terracotta", + "displayName": "Purple Glazed Terracotta" + }, + { + "id": 550, + "stackSize": 64, + "name": "blue_glazed_terracotta", + "displayName": "Blue Glazed Terracotta" + }, + { + "id": 551, + "stackSize": 64, + "name": "brown_glazed_terracotta", + "displayName": "Brown Glazed Terracotta" + }, + { + "id": 552, + "stackSize": 64, + "name": "green_glazed_terracotta", + "displayName": "Green Glazed Terracotta" + }, + { + "id": 553, + "stackSize": 64, + "name": "red_glazed_terracotta", + "displayName": "Red Glazed Terracotta" + }, + { + "id": 554, + "stackSize": 64, + "name": "black_glazed_terracotta", + "displayName": "Black Glazed Terracotta" + }, + { + "id": 555, + "stackSize": 64, + "name": "white_concrete", + "displayName": "White Concrete" + }, + { + "id": 556, + "stackSize": 64, + "name": "orange_concrete", + "displayName": "Orange Concrete" + }, + { + "id": 557, + "stackSize": 64, + "name": "magenta_concrete", + "displayName": "Magenta Concrete" + }, + { + "id": 558, + "stackSize": 64, + "name": "light_blue_concrete", + "displayName": "Light Blue Concrete" + }, + { + "id": 559, + "stackSize": 64, + "name": "yellow_concrete", + "displayName": "Yellow Concrete" + }, + { + "id": 560, + "stackSize": 64, + "name": "lime_concrete", + "displayName": "Lime Concrete" + }, + { + "id": 561, + "stackSize": 64, + "name": "pink_concrete", + "displayName": "Pink Concrete" + }, + { + "id": 562, + "stackSize": 64, + "name": "gray_concrete", + "displayName": "Gray Concrete" + }, + { + "id": 563, + "stackSize": 64, + "name": "light_gray_concrete", + "displayName": "Light Gray Concrete" + }, + { + "id": 564, + "stackSize": 64, + "name": "cyan_concrete", + "displayName": "Cyan Concrete" + }, + { + "id": 565, + "stackSize": 64, + "name": "purple_concrete", + "displayName": "Purple Concrete" + }, + { + "id": 566, + "stackSize": 64, + "name": "blue_concrete", + "displayName": "Blue Concrete" + }, + { + "id": 567, + "stackSize": 64, + "name": "brown_concrete", + "displayName": "Brown Concrete" + }, + { + "id": 568, + "stackSize": 64, + "name": "green_concrete", + "displayName": "Green Concrete" + }, + { + "id": 569, + "stackSize": 64, + "name": "red_concrete", + "displayName": "Red Concrete" + }, + { + "id": 570, + "stackSize": 64, + "name": "black_concrete", + "displayName": "Black Concrete" + }, + { + "id": 571, + "stackSize": 64, + "name": "white_concrete_powder", + "displayName": "White Concrete Powder" + }, + { + "id": 572, + "stackSize": 64, + "name": "orange_concrete_powder", + "displayName": "Orange Concrete Powder" + }, + { + "id": 573, + "stackSize": 64, + "name": "magenta_concrete_powder", + "displayName": "Magenta Concrete Powder" + }, + { + "id": 574, + "stackSize": 64, + "name": "light_blue_concrete_powder", + "displayName": "Light Blue Concrete Powder" + }, + { + "id": 575, + "stackSize": 64, + "name": "yellow_concrete_powder", + "displayName": "Yellow Concrete Powder" + }, + { + "id": 576, + "stackSize": 64, + "name": "lime_concrete_powder", + "displayName": "Lime Concrete Powder" + }, + { + "id": 577, + "stackSize": 64, + "name": "pink_concrete_powder", + "displayName": "Pink Concrete Powder" + }, + { + "id": 578, + "stackSize": 64, + "name": "gray_concrete_powder", + "displayName": "Gray Concrete Powder" + }, + { + "id": 579, + "stackSize": 64, + "name": "light_gray_concrete_powder", + "displayName": "Light Gray Concrete Powder" + }, + { + "id": 580, + "stackSize": 64, + "name": "cyan_concrete_powder", + "displayName": "Cyan Concrete Powder" + }, + { + "id": 581, + "stackSize": 64, + "name": "purple_concrete_powder", + "displayName": "Purple Concrete Powder" + }, + { + "id": 582, + "stackSize": 64, + "name": "blue_concrete_powder", + "displayName": "Blue Concrete Powder" + }, + { + "id": 583, + "stackSize": 64, + "name": "brown_concrete_powder", + "displayName": "Brown Concrete Powder" + }, + { + "id": 584, + "stackSize": 64, + "name": "green_concrete_powder", + "displayName": "Green Concrete Powder" + }, + { + "id": 585, + "stackSize": 64, + "name": "red_concrete_powder", + "displayName": "Red Concrete Powder" + }, + { + "id": 586, + "stackSize": 64, + "name": "black_concrete_powder", + "displayName": "Black Concrete Powder" + }, + { + "id": 587, + "stackSize": 64, + "name": "turtle_egg", + "displayName": "Turtle Egg" + }, + { + "id": 588, + "stackSize": 64, + "name": "sniffer_egg", + "displayName": "Sniffer Egg" + }, + { + "id": 589, + "stackSize": 64, + "name": "dead_tube_coral_block", + "displayName": "Dead Tube Coral Block" + }, + { + "id": 590, + "stackSize": 64, + "name": "dead_brain_coral_block", + "displayName": "Dead Brain Coral Block" + }, + { + "id": 591, + "stackSize": 64, + "name": "dead_bubble_coral_block", + "displayName": "Dead Bubble Coral Block" + }, + { + "id": 592, + "stackSize": 64, + "name": "dead_fire_coral_block", + "displayName": "Dead Fire Coral Block" + }, + { + "id": 593, + "stackSize": 64, + "name": "dead_horn_coral_block", + "displayName": "Dead Horn Coral Block" + }, + { + "id": 594, + "stackSize": 64, + "name": "tube_coral_block", + "displayName": "Tube Coral Block" + }, + { + "id": 595, + "stackSize": 64, + "name": "brain_coral_block", + "displayName": "Brain Coral Block" + }, + { + "id": 596, + "stackSize": 64, + "name": "bubble_coral_block", + "displayName": "Bubble Coral Block" + }, + { + "id": 597, + "stackSize": 64, + "name": "fire_coral_block", + "displayName": "Fire Coral Block" + }, + { + "id": 598, + "stackSize": 64, + "name": "horn_coral_block", + "displayName": "Horn Coral Block" + }, + { + "id": 599, + "stackSize": 64, + "name": "tube_coral", + "displayName": "Tube Coral" + }, + { + "id": 600, + "stackSize": 64, + "name": "brain_coral", + "displayName": "Brain Coral" + }, + { + "id": 601, + "stackSize": 64, + "name": "bubble_coral", + "displayName": "Bubble Coral" + }, + { + "id": 602, + "stackSize": 64, + "name": "fire_coral", + "displayName": "Fire Coral" + }, + { + "id": 603, + "stackSize": 64, + "name": "horn_coral", + "displayName": "Horn Coral" + }, + { + "id": 604, + "stackSize": 64, + "name": "dead_brain_coral", + "displayName": "Dead Brain Coral" + }, + { + "id": 605, + "stackSize": 64, + "name": "dead_bubble_coral", + "displayName": "Dead Bubble Coral" + }, + { + "id": 606, + "stackSize": 64, + "name": "dead_fire_coral", + "displayName": "Dead Fire Coral" + }, + { + "id": 607, + "stackSize": 64, + "name": "dead_horn_coral", + "displayName": "Dead Horn Coral" + }, + { + "id": 608, + "stackSize": 64, + "name": "dead_tube_coral", + "displayName": "Dead Tube Coral" + }, + { + "id": 609, + "stackSize": 64, + "name": "tube_coral_fan", + "displayName": "Tube Coral Fan" + }, + { + "id": 610, + "stackSize": 64, + "name": "brain_coral_fan", + "displayName": "Brain Coral Fan" + }, + { + "id": 611, + "stackSize": 64, + "name": "bubble_coral_fan", + "displayName": "Bubble Coral Fan" + }, + { + "id": 612, + "stackSize": 64, + "name": "fire_coral_fan", + "displayName": "Fire Coral Fan" + }, + { + "id": 613, + "stackSize": 64, + "name": "horn_coral_fan", + "displayName": "Horn Coral Fan" + }, + { + "id": 614, + "stackSize": 64, + "name": "dead_tube_coral_fan", + "displayName": "Dead Tube Coral Fan" + }, + { + "id": 615, + "stackSize": 64, + "name": "dead_brain_coral_fan", + "displayName": "Dead Brain Coral Fan" + }, + { + "id": 616, + "stackSize": 64, + "name": "dead_bubble_coral_fan", + "displayName": "Dead Bubble Coral Fan" + }, + { + "id": 617, + "stackSize": 64, + "name": "dead_fire_coral_fan", + "displayName": "Dead Fire Coral Fan" + }, + { + "id": 618, + "stackSize": 64, + "name": "dead_horn_coral_fan", + "displayName": "Dead Horn Coral Fan" + }, + { + "id": 619, + "stackSize": 64, + "name": "blue_ice", + "displayName": "Blue Ice" + }, + { + "id": 620, + "stackSize": 64, + "name": "conduit", + "displayName": "Conduit" + }, + { + "id": 621, + "stackSize": 64, + "name": "polished_granite_stairs", + "displayName": "Polished Granite Stairs" + }, + { + "id": 622, + "stackSize": 64, + "name": "smooth_red_sandstone_stairs", + "displayName": "Smooth Red Sandstone Stairs" + }, + { + "id": 623, + "stackSize": 64, + "name": "mossy_stone_brick_stairs", + "displayName": "Mossy Stone Brick Stairs" + }, + { + "id": 624, + "stackSize": 64, + "name": "polished_diorite_stairs", + "displayName": "Polished Diorite Stairs" + }, + { + "id": 625, + "stackSize": 64, + "name": "mossy_cobblestone_stairs", + "displayName": "Mossy Cobblestone Stairs" + }, + { + "id": 626, + "stackSize": 64, + "name": "end_brick_stairs", + "displayName": "End Stone Brick Stairs" + }, + { + "id": 627, + "stackSize": 64, + "name": "normal_stone_stairs", + "displayName": "Stone Stairs" + }, + { + "id": 628, + "stackSize": 64, + "name": "smooth_sandstone_stairs", + "displayName": "Smooth Sandstone Stairs" + }, + { + "id": 629, + "stackSize": 64, + "name": "smooth_quartz_stairs", + "displayName": "Smooth Quartz Stairs" + }, + { + "id": 630, + "stackSize": 64, + "name": "granite_stairs", + "displayName": "Granite Stairs" + }, + { + "id": 631, + "stackSize": 64, + "name": "andesite_stairs", + "displayName": "Andesite Stairs" + }, + { + "id": 632, + "stackSize": 64, + "name": "red_nether_brick_stairs", + "displayName": "Red Nether Brick Stairs" + }, + { + "id": 633, + "stackSize": 64, + "name": "polished_andesite_stairs", + "displayName": "Polished Andesite Stairs" + }, + { + "id": 634, + "stackSize": 64, + "name": "diorite_stairs", + "displayName": "Diorite Stairs" + }, + { + "id": 635, + "stackSize": 64, + "name": "cobbled_deepslate_stairs", + "displayName": "Cobbled Deepslate Stairs" + }, + { + "id": 636, + "stackSize": 64, + "name": "polished_deepslate_stairs", + "displayName": "Polished Deepslate Stairs" + }, + { + "id": 637, + "stackSize": 64, + "name": "deepslate_brick_stairs", + "displayName": "Deepslate Brick Stairs" + }, + { + "id": 638, + "stackSize": 64, + "name": "deepslate_tile_stairs", + "displayName": "Deepslate Tile Stairs" + }, + { + "id": 641, + "displayName": "Mossy Stone Brick Slab", + "name": "stone_block_slab4", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 646, + "name": "smooth_quartz_slab", + "displayName": "Smooth Quartz Slab", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 264, + "name": "stone_slab", + "displayName": "Stone Slab", + "stackSize": 64 + }, + { + "metadata": 3, + "id": 267, + "name": "cut_sandstone_slab", + "displayName": "Cut Sandstone Slab", + "stackSize": 64 + }, + { + "metadata": 4, + "id": 276, + "name": "cut_red_sandstone_slab", + "displayName": "Cut Red Sandstone Slab", + "stackSize": 64 + } + ] + }, + { + "id": 644, + "displayName": "End Stone Brick Slab", + "name": "stone_block_slab3", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 640, + "name": "smooth_red_sandstone_slab", + "displayName": "Smooth Red Sandstone Slab", + "stackSize": 64 + }, + { + "metadata": 2, + "id": 650, + "name": "polished_andesite_slab", + "displayName": "Polished Andesite Slab", + "stackSize": 64 + }, + { + "metadata": 3, + "id": 648, + "name": "andesite_slab", + "displayName": "Andesite Slab", + "stackSize": 64 + }, + { + "metadata": 4, + "id": 651, + "name": "diorite_slab", + "displayName": "Diorite Slab", + "stackSize": 64 + }, + { + "metadata": 5, + "id": 642, + "name": "polished_diorite_slab", + "displayName": "Polished Diorite Slab", + "stackSize": 64 + }, + { + "metadata": 6, + "id": 647, + "name": "granite_slab", + "displayName": "Granite Slab", + "stackSize": 64 + }, + { + "metadata": 7, + "id": 639, + "name": "polished_granite_slab", + "displayName": "Polished Granite Slab", + "stackSize": 64 + } + ] + }, + { + "id": 652, + "stackSize": 64, + "name": "cobbled_deepslate_slab", + "displayName": "Cobbled Deepslate Slab" + }, + { + "id": 653, + "stackSize": 64, + "name": "polished_deepslate_slab", + "displayName": "Polished Deepslate Slab" + }, + { + "id": 654, + "stackSize": 64, + "name": "deepslate_brick_slab", + "displayName": "Deepslate Brick Slab" + }, + { + "id": 655, + "stackSize": 64, + "name": "deepslate_tile_slab", + "displayName": "Deepslate Tile Slab" + }, + { + "id": 656, + "stackSize": 64, + "name": "scaffolding", + "displayName": "Scaffolding" + }, + { + "id": 657, + "stackSize": 64, + "name": "redstone", + "displayName": "Redstone Dust" + }, + { + "id": 658, + "stackSize": 64, + "name": "redstone_torch", + "displayName": "Redstone Torch" + }, + { + "id": 659, + "stackSize": 64, + "name": "redstone_block", + "displayName": "Block of Redstone" + }, + { + "id": 660, + "stackSize": 64, + "name": "repeater", + "displayName": "Redstone Repeater" + }, + { + "id": 661, + "stackSize": 64, + "name": "comparator", + "displayName": "Redstone Comparator" + }, + { + "id": 662, + "stackSize": 64, + "name": "piston", + "displayName": "Piston" + }, + { + "id": 663, + "stackSize": 64, + "name": "sticky_piston", + "displayName": "Sticky Piston" + }, + { + "id": 664, + "stackSize": 64, + "name": "slime", + "displayName": "Slime Block" + }, + { + "id": 665, + "stackSize": 64, + "name": "honey_block", + "displayName": "Honey Block" + }, + { + "id": 666, + "stackSize": 64, + "name": "observer", + "displayName": "Observer" + }, + { + "id": 667, + "stackSize": 64, + "name": "hopper", + "displayName": "Hopper" + }, + { + "id": 668, + "stackSize": 64, + "name": "dispenser", + "displayName": "Dispenser" + }, + { + "id": 669, + "stackSize": 64, + "name": "dropper", + "displayName": "Dropper" + }, + { + "id": 670, + "stackSize": 64, + "name": "lectern", + "displayName": "Lectern" + }, + { + "id": 671, + "stackSize": 64, + "name": "target", + "displayName": "Target" + }, + { + "id": 672, + "stackSize": 64, + "name": "lever", + "displayName": "Lever" + }, + { + "id": 673, + "stackSize": 64, + "name": "lightning_rod", + "displayName": "Lightning Rod" + }, + { + "id": 674, + "stackSize": 64, + "name": "daylight_detector", + "displayName": "Daylight Detector" + }, + { + "id": 675, + "stackSize": 64, + "name": "sculk_sensor", + "displayName": "Sculk Sensor" + }, + { + "id": 676, + "stackSize": 64, + "name": "calibrated_sculk_sensor", + "displayName": "Calibrated Sculk Sensor" + }, + { + "id": 677, + "stackSize": 64, + "name": "tripwire_hook", + "displayName": "Tripwire Hook" + }, + { + "id": 678, + "stackSize": 64, + "name": "trapped_chest", + "displayName": "Trapped Chest" + }, + { + "id": 679, + "stackSize": 64, + "name": "tnt", + "displayName": "TNT" + }, + { + "id": 680, + "stackSize": 64, + "name": "redstone_lamp", + "displayName": "Redstone Lamp" + }, + { + "id": 681, + "stackSize": 64, + "name": "noteblock", + "displayName": "Note Block" + }, + { + "id": 682, + "stackSize": 64, + "name": "stone_button", + "displayName": "Stone Button" + }, + { + "id": 683, + "stackSize": 64, + "name": "polished_blackstone_button", + "displayName": "Polished Blackstone Button" + }, + { + "id": 684, + "stackSize": 64, + "name": "wooden_button", + "displayName": "Oak Button" + }, + { + "id": 685, + "stackSize": 64, + "name": "spruce_button", + "displayName": "Spruce Button" + }, + { + "id": 686, + "stackSize": 64, + "name": "birch_button", + "displayName": "Birch Button" + }, + { + "id": 687, + "stackSize": 64, + "name": "jungle_button", + "displayName": "Jungle Button" + }, + { + "id": 688, + "stackSize": 64, + "name": "acacia_button", + "displayName": "Acacia Button" + }, + { + "id": 689, + "stackSize": 64, + "name": "cherry_button", + "displayName": "Cherry Button" + }, + { + "id": 690, + "stackSize": 64, + "name": "dark_oak_button", + "displayName": "Dark Oak Button" + }, + { + "id": 691, + "stackSize": 64, + "name": "mangrove_button", + "displayName": "Mangrove Button" + }, + { + "id": 692, + "stackSize": 64, + "name": "bamboo_button", + "displayName": "Bamboo Button" + }, + { + "id": 693, + "stackSize": 64, + "name": "crimson_button", + "displayName": "Crimson Button" + }, + { + "id": 694, + "stackSize": 64, + "name": "warped_button", + "displayName": "Warped Button" + }, + { + "id": 695, + "stackSize": 64, + "name": "stone_pressure_plate", + "displayName": "Stone Pressure Plate" + }, + { + "id": 696, + "stackSize": 64, + "name": "polished_blackstone_pressure_plate", + "displayName": "Polished Blackstone Pressure Plate" + }, + { + "id": 697, + "stackSize": 64, + "name": "light_weighted_pressure_plate", + "displayName": "Light Weighted Pressure Plate" + }, + { + "id": 698, + "stackSize": 64, + "name": "heavy_weighted_pressure_plate", + "displayName": "Heavy Weighted Pressure Plate" + }, + { + "id": 699, + "stackSize": 64, + "name": "wooden_pressure_plate", + "displayName": "Oak Pressure Plate" + }, + { + "id": 700, + "stackSize": 64, + "name": "spruce_pressure_plate", + "displayName": "Spruce Pressure Plate" + }, + { + "id": 701, + "stackSize": 64, + "name": "birch_pressure_plate", + "displayName": "Birch Pressure Plate" + }, + { + "id": 702, + "stackSize": 64, + "name": "jungle_pressure_plate", + "displayName": "Jungle Pressure Plate" + }, + { + "id": 703, + "stackSize": 64, + "name": "acacia_pressure_plate", + "displayName": "Acacia Pressure Plate" + }, + { + "id": 704, + "stackSize": 64, + "name": "cherry_pressure_plate", + "displayName": "Cherry Pressure Plate" + }, + { + "id": 705, + "stackSize": 64, + "name": "dark_oak_pressure_plate", + "displayName": "Dark Oak Pressure Plate" + }, + { + "id": 706, + "stackSize": 64, + "name": "mangrove_pressure_plate", + "displayName": "Mangrove Pressure Plate" + }, + { + "id": 707, + "stackSize": 64, + "name": "bamboo_pressure_plate", + "displayName": "Bamboo Pressure Plate" + }, + { + "id": 708, + "stackSize": 64, + "name": "crimson_pressure_plate", + "displayName": "Crimson Pressure Plate" + }, + { + "id": 709, + "stackSize": 64, + "name": "warped_pressure_plate", + "displayName": "Warped Pressure Plate" + }, + { + "id": 710, + "stackSize": 64, + "name": "iron_door", + "displayName": "Iron Door" + }, + { + "id": 711, + "stackSize": 64, + "name": "wooden_door", + "displayName": "Oak Door" + }, + { + "id": 712, + "stackSize": 64, + "name": "spruce_door", + "displayName": "Spruce Door" + }, + { + "id": 713, + "stackSize": 64, + "name": "birch_door", + "displayName": "Birch Door" + }, + { + "id": 714, + "stackSize": 64, + "name": "jungle_door", + "displayName": "Jungle Door" + }, + { + "id": 715, + "stackSize": 64, + "name": "acacia_door", + "displayName": "Acacia Door" + }, + { + "id": 716, + "stackSize": 64, + "name": "cherry_door", + "displayName": "Cherry Door" + }, + { + "id": 717, + "stackSize": 64, + "name": "dark_oak_door", + "displayName": "Dark Oak Door" + }, + { + "id": 718, + "stackSize": 64, + "name": "mangrove_door", + "displayName": "Mangrove Door" + }, + { + "id": 719, + "stackSize": 64, + "name": "bamboo_door", + "displayName": "Bamboo Door" + }, + { + "id": 720, + "stackSize": 64, + "name": "crimson_door", + "displayName": "Crimson Door" + }, + { + "id": 721, + "stackSize": 64, + "name": "warped_door", + "displayName": "Warped Door" + }, + { + "id": 722, + "stackSize": 64, + "name": "copper_door", + "displayName": "Copper Door" + }, + { + "id": 723, + "stackSize": 64, + "name": "exposed_copper_door", + "displayName": "Exposed Copper Door" + }, + { + "id": 724, + "stackSize": 64, + "name": "weathered_copper_door", + "displayName": "Weathered Copper Door" + }, + { + "id": 725, + "stackSize": 64, + "name": "oxidized_copper_door", + "displayName": "Oxidized Copper Door" + }, + { + "id": 726, + "stackSize": 64, + "name": "waxed_copper_door", + "displayName": "Waxed Copper Door" + }, + { + "id": 727, + "stackSize": 64, + "name": "waxed_exposed_copper_door", + "displayName": "Waxed Exposed Copper Door" + }, + { + "id": 728, + "stackSize": 64, + "name": "waxed_weathered_copper_door", + "displayName": "Waxed Weathered Copper Door" + }, + { + "id": 729, + "stackSize": 64, + "name": "waxed_oxidized_copper_door", + "displayName": "Waxed Oxidized Copper Door" + }, + { + "id": 730, + "stackSize": 64, + "name": "iron_trapdoor", + "displayName": "Iron Trapdoor" + }, + { + "id": 731, + "stackSize": 64, + "name": "trapdoor", + "displayName": "Oak Trapdoor" + }, + { + "id": 732, + "stackSize": 64, + "name": "spruce_trapdoor", + "displayName": "Spruce Trapdoor" + }, + { + "id": 733, + "stackSize": 64, + "name": "birch_trapdoor", + "displayName": "Birch Trapdoor" + }, + { + "id": 734, + "stackSize": 64, + "name": "jungle_trapdoor", + "displayName": "Jungle Trapdoor" + }, + { + "id": 735, + "stackSize": 64, + "name": "acacia_trapdoor", + "displayName": "Acacia Trapdoor" + }, + { + "id": 736, + "stackSize": 64, + "name": "cherry_trapdoor", + "displayName": "Cherry Trapdoor" + }, + { + "id": 737, + "stackSize": 64, + "name": "dark_oak_trapdoor", + "displayName": "Dark Oak Trapdoor" + }, + { + "id": 738, + "stackSize": 64, + "name": "mangrove_trapdoor", + "displayName": "Mangrove Trapdoor" + }, + { + "id": 739, + "stackSize": 64, + "name": "bamboo_trapdoor", + "displayName": "Bamboo Trapdoor" + }, + { + "id": 740, + "stackSize": 64, + "name": "crimson_trapdoor", + "displayName": "Crimson Trapdoor" + }, + { + "id": 741, + "stackSize": 64, + "name": "warped_trapdoor", + "displayName": "Warped Trapdoor" + }, + { + "id": 742, + "stackSize": 64, + "name": "copper_trapdoor", + "displayName": "Copper Trapdoor" + }, + { + "id": 743, + "stackSize": 64, + "name": "exposed_copper_trapdoor", + "displayName": "Exposed Copper Trapdoor" + }, + { + "id": 744, + "stackSize": 64, + "name": "weathered_copper_trapdoor", + "displayName": "Weathered Copper Trapdoor" + }, + { + "id": 745, + "stackSize": 64, + "name": "oxidized_copper_trapdoor", + "displayName": "Oxidized Copper Trapdoor" + }, + { + "id": 746, + "stackSize": 64, + "name": "waxed_copper_trapdoor", + "displayName": "Waxed Copper Trapdoor" + }, + { + "id": 747, + "stackSize": 64, + "name": "waxed_exposed_copper_trapdoor", + "displayName": "Waxed Exposed Copper Trapdoor" + }, + { + "id": 748, + "stackSize": 64, + "name": "waxed_weathered_copper_trapdoor", + "displayName": "Waxed Weathered Copper Trapdoor" + }, + { + "id": 749, + "stackSize": 64, + "name": "waxed_oxidized_copper_trapdoor", + "displayName": "Waxed Oxidized Copper Trapdoor" + }, + { + "id": 750, + "stackSize": 64, + "name": "fence_gate", + "displayName": "Oak Fence Gate" + }, + { + "id": 751, + "stackSize": 64, + "name": "spruce_fence_gate", + "displayName": "Spruce Fence Gate" + }, + { + "id": 752, + "stackSize": 64, + "name": "birch_fence_gate", + "displayName": "Birch Fence Gate" + }, + { + "id": 753, + "stackSize": 64, + "name": "jungle_fence_gate", + "displayName": "Jungle Fence Gate" + }, + { + "id": 754, + "stackSize": 64, + "name": "acacia_fence_gate", + "displayName": "Acacia Fence Gate" + }, + { + "id": 755, + "stackSize": 64, + "name": "cherry_fence_gate", + "displayName": "Cherry Fence Gate" + }, + { + "id": 756, + "stackSize": 64, + "name": "dark_oak_fence_gate", + "displayName": "Dark Oak Fence Gate" + }, + { + "id": 757, + "stackSize": 64, + "name": "mangrove_fence_gate", + "displayName": "Mangrove Fence Gate" + }, + { + "id": 758, + "stackSize": 64, + "name": "bamboo_fence_gate", + "displayName": "Bamboo Fence Gate" + }, + { + "id": 759, + "stackSize": 64, + "name": "crimson_fence_gate", + "displayName": "Crimson Fence Gate" + }, + { + "id": 760, + "stackSize": 64, + "name": "warped_fence_gate", + "displayName": "Warped Fence Gate" + }, + { + "id": 761, + "stackSize": 64, + "name": "golden_rail", + "displayName": "Powered Rail" + }, + { + "id": 762, + "stackSize": 64, + "name": "detector_rail", + "displayName": "Detector Rail" + }, + { + "id": 763, + "stackSize": 64, + "name": "rail", + "displayName": "Rail" + }, + { + "id": 764, + "stackSize": 64, + "name": "activator_rail", + "displayName": "Activator Rail" + }, + { + "id": 765, + "stackSize": 1, + "name": "saddle", + "displayName": "Saddle" + }, + { + "id": 766, + "stackSize": 1, + "name": "minecart", + "displayName": "Minecart" + }, + { + "id": 767, + "stackSize": 1, + "name": "chest_minecart", + "displayName": "Minecart with Chest" + }, + { + "id": 768, + "displayName": "Minecart with Furnace", + "name": "hopper_minecart", + "stackSize": 1, + "metadata": 0, + "variations": [ + { + "metadata": 0, + "id": 770, + "name": "hopper_minecart", + "displayName": "Minecart with Hopper", + "stackSize": 1 + } + ] + }, + { + "id": 769, + "stackSize": 1, + "name": "tnt_minecart", + "displayName": "Minecart with TNT" + }, + { + "id": 771, + "stackSize": 1, + "name": "carrot_on_a_stick", + "displayName": "Carrot on a Stick", + "enchantCategories": [ + "breakable", + "vanishable" + ], + "maxDurability": 1 + }, + { + "id": 772, + "stackSize": 1, + "name": "warped_fungus_on_a_stick", + "displayName": "Warped Fungus on a Stick", + "enchantCategories": [ + "breakable", + "vanishable" + ], + "maxDurability": 1 + }, + { + "id": 773, + "stackSize": 1, + "name": "elytra", + "displayName": "Elytra", + "enchantCategories": [ + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "phantom_membrane" + ], + "maxDurability": 1 + }, + { + "id": 774, + "stackSize": 1, + "name": "oak_boat", + "displayName": "Oak Boat" + }, + { + "id": 775, + "stackSize": 1, + "name": "oak_chest_boat", + "displayName": "Oak Boat with Chest" + }, + { + "id": 776, + "stackSize": 1, + "name": "spruce_boat", + "displayName": "Spruce Boat" + }, + { + "id": 777, + "stackSize": 1, + "name": "spruce_chest_boat", + "displayName": "Spruce Boat with Chest" + }, + { + "id": 778, + "stackSize": 1, + "name": "birch_boat", + "displayName": "Birch Boat" + }, + { + "id": 779, + "stackSize": 1, + "name": "birch_chest_boat", + "displayName": "Birch Boat with Chest" + }, + { + "id": 780, + "stackSize": 1, + "name": "jungle_boat", + "displayName": "Jungle Boat" + }, + { + "id": 781, + "stackSize": 1, + "name": "jungle_chest_boat", + "displayName": "Jungle Boat with Chest" + }, + { + "id": 782, + "stackSize": 1, + "name": "acacia_boat", + "displayName": "Acacia Boat" + }, + { + "id": 783, + "stackSize": 1, + "name": "acacia_chest_boat", + "displayName": "Acacia Boat with Chest" + }, + { + "id": 784, + "stackSize": 1, + "name": "cherry_boat", + "displayName": "Cherry Boat" + }, + { + "id": 785, + "stackSize": 1, + "name": "cherry_chest_boat", + "displayName": "Cherry Boat with Chest" + }, + { + "id": 786, + "stackSize": 1, + "name": "dark_oak_boat", + "displayName": "Dark Oak Boat" + }, + { + "id": 787, + "stackSize": 1, + "name": "dark_oak_chest_boat", + "displayName": "Dark Oak Boat with Chest" + }, + { + "id": 788, + "stackSize": 1, + "name": "mangrove_boat", + "displayName": "Mangrove Boat" + }, + { + "id": 789, + "stackSize": 1, + "name": "mangrove_chest_boat", + "displayName": "Mangrove Boat with Chest" + }, + { + "id": 790, + "stackSize": 1, + "name": "bamboo_raft", + "displayName": "Bamboo Raft" + }, + { + "id": 791, + "stackSize": 1, + "name": "bamboo_chest_raft", + "displayName": "Bamboo Raft with Chest" + }, + { + "id": 792, + "stackSize": 64, + "name": "structure_block", + "displayName": "Structure Block" + }, + { + "id": 793, + "stackSize": 64, + "name": "jigsaw", + "displayName": "Jigsaw Block" + }, + { + "id": 794, + "stackSize": 1, + "name": "turtle_helmet", + "displayName": "Turtle Shell", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/head_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "turtle_scute" + ], + "maxDurability": 1 + }, + { + "id": 795, + "stackSize": 64, + "name": "turtle_scute", + "displayName": "Turtle Scute" + }, + { + "id": 796, + "stackSize": 64, + "name": "armadillo_scute", + "displayName": "Armadillo Scute" + }, + { + "id": 797, + "stackSize": 1, + "name": "wolf_armor", + "displayName": "Wolf Armor" + }, + { + "id": 798, + "stackSize": 1, + "name": "flint_and_steel", + "displayName": "Flint and Steel", + "enchantCategories": [ + "breakable", + "vanishable" + ], + "maxDurability": 1 + }, + { + "id": 799, + "stackSize": 64, + "name": "apple", + "displayName": "Apple" + }, + { + "id": 800, + "stackSize": 1, + "name": "bow", + "displayName": "Bow", + "enchantCategories": [ + "breakable", + "bow", + "vanishable" + ], + "maxDurability": 1 + }, + { + "id": 801, + "displayName": "Arrow", + "name": "arrow", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 0, + "id": 1159, + "name": "spectral_arrow", + "displayName": "Spectral Arrow", + "stackSize": 64 + }, + { + "metadata": 0, + "id": 1160, + "name": "tipped_arrow", + "displayName": "Tipped Arrow", + "stackSize": 64 + } + ] + }, + { + "id": 802, + "stackSize": 64, + "name": "coal", + "displayName": "Coal" + }, + { + "id": 803, + "stackSize": 64, + "name": "charcoal", + "displayName": "Charcoal" + }, + { + "id": 804, + "stackSize": 64, + "name": "diamond", + "displayName": "Diamond" + }, + { + "id": 805, + "stackSize": 64, + "name": "emerald", + "displayName": "Emerald" + }, + { + "id": 806, + "stackSize": 64, + "name": "lapis_lazuli", + "displayName": "Lapis Lazuli" + }, + { + "id": 807, + "stackSize": 64, + "name": "quartz", + "displayName": "Nether Quartz" + }, + { + "id": 808, + "stackSize": 64, + "name": "amethyst_shard", + "displayName": "Amethyst Shard" + }, + { + "id": 809, + "stackSize": 64, + "name": "raw_iron", + "displayName": "Raw Iron" + }, + { + "id": 810, + "stackSize": 64, + "name": "iron_ingot", + "displayName": "Iron Ingot" + }, + { + "id": 811, + "stackSize": 64, + "name": "raw_copper", + "displayName": "Raw Copper" + }, + { + "id": 812, + "stackSize": 64, + "name": "copper_ingot", + "displayName": "Copper Ingot" + }, + { + "id": 813, + "stackSize": 64, + "name": "raw_gold", + "displayName": "Raw Gold" + }, + { + "id": 814, + "stackSize": 64, + "name": "gold_ingot", + "displayName": "Gold Ingot" + }, + { + "id": 815, + "stackSize": 64, + "name": "netherite_ingot", + "displayName": "Netherite Ingot" + }, + { + "id": 816, + "stackSize": 64, + "name": "netherite_scrap", + "displayName": "Netherite Scrap" + }, + { + "id": 817, + "stackSize": 1, + "name": "wooden_sword", + "displayName": "Wooden Sword", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "tagkey[minecraft:item / minecraft:enchantable/sword]", + "tagkey[minecraft:item / minecraft:enchantable/fire_aspect]", + "breakable", + "vanishable" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 1 + }, + { + "id": 818, + "stackSize": 1, + "name": "wooden_shovel", + "displayName": "Wooden Shovel", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 1 + }, + { + "id": 819, + "stackSize": 1, + "name": "wooden_pickaxe", + "displayName": "Wooden Pickaxe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 1 + }, + { + "id": 820, + "stackSize": 1, + "name": "wooden_axe", + "displayName": "Wooden Axe", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 1 + }, + { + "id": 821, + "stackSize": 1, + "name": "wooden_hoe", + "displayName": "Wooden Hoe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 1 + }, + { + "id": 822, + "stackSize": 1, + "name": "stone_sword", + "displayName": "Stone Sword", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "tagkey[minecraft:item / minecraft:enchantable/sword]", + "tagkey[minecraft:item / minecraft:enchantable/fire_aspect]", + "breakable", + "vanishable" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 1 + }, + { + "id": 823, + "stackSize": 1, + "name": "stone_shovel", + "displayName": "Stone Shovel", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 1 + }, + { + "id": 824, + "stackSize": 1, + "name": "stone_pickaxe", + "displayName": "Stone Pickaxe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 1 + }, + { + "id": 825, + "stackSize": 1, + "name": "stone_axe", + "displayName": "Stone Axe", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 1 + }, + { + "id": 826, + "stackSize": 1, + "name": "stone_hoe", + "displayName": "Stone Hoe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 1 + }, + { + "id": 827, + "stackSize": 1, + "name": "golden_sword", + "displayName": "Golden Sword", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "tagkey[minecraft:item / minecraft:enchantable/sword]", + "tagkey[minecraft:item / minecraft:enchantable/fire_aspect]", + "breakable", + "vanishable" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 1 + }, + { + "id": 828, + "stackSize": 1, + "name": "golden_shovel", + "displayName": "Golden Shovel", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 1 + }, + { + "id": 829, + "stackSize": 1, + "name": "golden_pickaxe", + "displayName": "Golden Pickaxe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 1 + }, + { + "id": 830, + "stackSize": 1, + "name": "golden_axe", + "displayName": "Golden Axe", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 1 + }, + { + "id": 831, + "stackSize": 1, + "name": "golden_hoe", + "displayName": "Golden Hoe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 1 + }, + { + "id": 832, + "stackSize": 1, + "name": "iron_sword", + "displayName": "Iron Sword", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "tagkey[minecraft:item / minecraft:enchantable/sword]", + "tagkey[minecraft:item / minecraft:enchantable/fire_aspect]", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 833, + "stackSize": 1, + "name": "iron_shovel", + "displayName": "Iron Shovel", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 834, + "stackSize": 1, + "name": "iron_pickaxe", + "displayName": "Iron Pickaxe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 835, + "stackSize": 1, + "name": "iron_axe", + "displayName": "Iron Axe", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 836, + "stackSize": 1, + "name": "iron_hoe", + "displayName": "Iron Hoe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 837, + "stackSize": 1, + "name": "diamond_sword", + "displayName": "Diamond Sword", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "tagkey[minecraft:item / minecraft:enchantable/sword]", + "tagkey[minecraft:item / minecraft:enchantable/fire_aspect]", + "breakable", + "vanishable" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1 + }, + { + "id": 838, + "stackSize": 1, + "name": "diamond_shovel", + "displayName": "Diamond Shovel", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1 + }, + { + "id": 839, + "stackSize": 1, + "name": "diamond_pickaxe", + "displayName": "Diamond Pickaxe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1 + }, + { + "id": 840, + "stackSize": 1, + "name": "diamond_axe", + "displayName": "Diamond Axe", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1 + }, + { + "id": 841, + "stackSize": 1, + "name": "diamond_hoe", + "displayName": "Diamond Hoe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1 + }, + { + "id": 842, + "stackSize": 1, + "name": "netherite_sword", + "displayName": "Netherite Sword", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "tagkey[minecraft:item / minecraft:enchantable/sword]", + "tagkey[minecraft:item / minecraft:enchantable/fire_aspect]", + "breakable", + "vanishable" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 1 + }, + { + "id": 843, + "stackSize": 1, + "name": "netherite_shovel", + "displayName": "Netherite Shovel", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 1 + }, + { + "id": 844, + "stackSize": 1, + "name": "netherite_pickaxe", + "displayName": "Netherite Pickaxe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 1 + }, + { + "id": 845, + "stackSize": 1, + "name": "netherite_axe", + "displayName": "Netherite Axe", + "enchantCategories": [ + "tagkey[minecraft:item / minecraft:enchantable/sharp_weapon]", + "weapon", + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 1 + }, + { + "id": 846, + "stackSize": 1, + "name": "netherite_hoe", + "displayName": "Netherite Hoe", + "enchantCategories": [ + "digger", + "tagkey[minecraft:item / minecraft:enchantable/mining_loot]", + "breakable", + "vanishable" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 1 + }, + { + "id": 847, + "displayName": "Stick", + "name": "stick", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 0, + "id": 1167, + "name": "debug_stick", + "displayName": "Debug Stick", + "stackSize": 1 + } + ] + }, + { + "id": 848, + "stackSize": 64, + "name": "bowl", + "displayName": "Bowl" + }, + { + "id": 849, + "stackSize": 1, + "name": "mushroom_stew", + "displayName": "Mushroom Stew" + }, + { + "id": 850, + "stackSize": 64, + "name": "string", + "displayName": "String" + }, + { + "id": 851, + "stackSize": 64, + "name": "feather", + "displayName": "Feather" + }, + { + "id": 852, + "stackSize": 64, + "name": "gunpowder", + "displayName": "Gunpowder" + }, + { + "id": 853, + "stackSize": 64, + "name": "wheat_seeds", + "displayName": "Wheat Seeds" + }, + { + "id": 854, + "stackSize": 64, + "name": "wheat", + "displayName": "Wheat" + }, + { + "id": 855, + "stackSize": 64, + "name": "bread", + "displayName": "Bread" + }, + { + "id": 856, + "stackSize": 1, + "name": "leather_helmet", + "displayName": "Leather Cap", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/head_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "leather" + ], + "maxDurability": 1 + }, + { + "id": 857, + "stackSize": 1, + "name": "leather_chestplate", + "displayName": "Leather Tunic", + "enchantCategories": [ + "armor", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "leather" + ], + "maxDurability": 1 + }, + { + "id": 858, + "stackSize": 1, + "name": "leather_leggings", + "displayName": "Leather Pants", + "enchantCategories": [ + "armor", + "wearable", + "tagkey[minecraft:item / minecraft:enchantable/leg_armor]", + "breakable", + "vanishable" + ], + "repairWith": [ + "leather" + ], + "maxDurability": 1 + }, + { + "id": 859, + "stackSize": 1, + "name": "leather_boots", + "displayName": "Leather Boots", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/foot_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "leather" + ], + "maxDurability": 1 + }, + { + "id": 860, + "stackSize": 1, + "name": "chainmail_helmet", + "displayName": "Chainmail Helmet", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/head_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 861, + "stackSize": 1, + "name": "chainmail_chestplate", + "displayName": "Chainmail Chestplate", + "enchantCategories": [ + "armor", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 862, + "stackSize": 1, + "name": "chainmail_leggings", + "displayName": "Chainmail Leggings", + "enchantCategories": [ + "armor", + "wearable", + "tagkey[minecraft:item / minecraft:enchantable/leg_armor]", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 863, + "stackSize": 1, + "name": "chainmail_boots", + "displayName": "Chainmail Boots", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/foot_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 864, + "stackSize": 1, + "name": "iron_helmet", + "displayName": "Iron Helmet", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/head_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 865, + "stackSize": 1, + "name": "iron_chestplate", + "displayName": "Iron Chestplate", + "enchantCategories": [ + "armor", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 866, + "stackSize": 1, + "name": "iron_leggings", + "displayName": "Iron Leggings", + "enchantCategories": [ + "armor", + "wearable", + "tagkey[minecraft:item / minecraft:enchantable/leg_armor]", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 867, + "stackSize": 1, + "name": "iron_boots", + "displayName": "Iron Boots", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/foot_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 1 + }, + { + "id": 868, + "stackSize": 1, + "name": "diamond_helmet", + "displayName": "Diamond Helmet", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/head_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1 + }, + { + "id": 869, + "stackSize": 1, + "name": "diamond_chestplate", + "displayName": "Diamond Chestplate", + "enchantCategories": [ + "armor", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1 + }, + { + "id": 870, + "stackSize": 1, + "name": "diamond_leggings", + "displayName": "Diamond Leggings", + "enchantCategories": [ + "armor", + "wearable", + "tagkey[minecraft:item / minecraft:enchantable/leg_armor]", + "breakable", + "vanishable" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1 + }, + { + "id": 871, + "stackSize": 1, + "name": "diamond_boots", + "displayName": "Diamond Boots", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/foot_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1 + }, + { + "id": 872, + "stackSize": 1, + "name": "golden_helmet", + "displayName": "Golden Helmet", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/head_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 1 + }, + { + "id": 873, + "stackSize": 1, + "name": "golden_chestplate", + "displayName": "Golden Chestplate", + "enchantCategories": [ + "armor", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 1 + }, + { + "id": 874, + "stackSize": 1, + "name": "golden_leggings", + "displayName": "Golden Leggings", + "enchantCategories": [ + "armor", + "wearable", + "tagkey[minecraft:item / minecraft:enchantable/leg_armor]", + "breakable", + "vanishable" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 1 + }, + { + "id": 875, + "stackSize": 1, + "name": "golden_boots", + "displayName": "Golden Boots", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/foot_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 1 + }, + { + "id": 876, + "stackSize": 1, + "name": "netherite_helmet", + "displayName": "Netherite Helmet", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/head_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 1 + }, + { + "id": 877, + "stackSize": 1, + "name": "netherite_chestplate", + "displayName": "Netherite Chestplate", + "enchantCategories": [ + "armor", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 1 + }, + { + "id": 878, + "stackSize": 1, + "name": "netherite_leggings", + "displayName": "Netherite Leggings", + "enchantCategories": [ + "armor", + "wearable", + "tagkey[minecraft:item / minecraft:enchantable/leg_armor]", + "breakable", + "vanishable" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 1 + }, + { + "id": 879, + "stackSize": 1, + "name": "netherite_boots", + "displayName": "Netherite Boots", + "enchantCategories": [ + "armor", + "tagkey[minecraft:item / minecraft:enchantable/foot_armor]", + "wearable", + "breakable", + "vanishable" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 1 + }, + { + "id": 880, + "stackSize": 64, + "name": "flint", + "displayName": "Flint" + }, + { + "id": 881, + "stackSize": 64, + "name": "porkchop", + "displayName": "Raw Porkchop" + }, + { + "id": 882, + "stackSize": 64, + "name": "cooked_porkchop", + "displayName": "Cooked Porkchop" + }, + { + "id": 883, + "stackSize": 64, + "name": "painting", + "displayName": "Painting" + }, + { + "id": 884, + "stackSize": 64, + "name": "golden_apple", + "displayName": "Golden Apple" + }, + { + "id": 885, + "stackSize": 64, + "name": "enchanted_golden_apple", + "displayName": "Enchanted Golden Apple" + }, + { + "id": 886, + "stackSize": 16, + "name": "oak_sign", + "displayName": "Oak Sign" + }, + { + "id": 887, + "stackSize": 16, + "name": "spruce_sign", + "displayName": "Spruce Sign" + }, + { + "id": 888, + "stackSize": 16, + "name": "birch_sign", + "displayName": "Birch Sign" + }, + { + "id": 889, + "stackSize": 16, + "name": "jungle_sign", + "displayName": "Jungle Sign" + }, + { + "id": 890, + "stackSize": 16, + "name": "acacia_sign", + "displayName": "Acacia Sign" + }, + { + "id": 891, + "stackSize": 16, + "name": "cherry_sign", + "displayName": "Cherry Sign" + }, + { + "id": 892, + "stackSize": 16, + "name": "dark_oak_sign", + "displayName": "Dark Oak Sign" + }, + { + "id": 893, + "stackSize": 16, + "name": "mangrove_sign", + "displayName": "Mangrove Sign" + }, + { + "id": 894, + "stackSize": 16, + "name": "bamboo_sign", + "displayName": "Bamboo Sign" + }, + { + "id": 895, + "stackSize": 16, + "name": "crimson_sign", + "displayName": "Crimson Sign" + }, + { + "id": 896, + "stackSize": 16, + "name": "warped_sign", + "displayName": "Warped Sign" + }, + { + "id": 897, + "stackSize": 16, + "name": "oak_hanging_sign", + "displayName": "Oak Hanging Sign" + }, + { + "id": 898, + "stackSize": 16, + "name": "spruce_hanging_sign", + "displayName": "Spruce Hanging Sign" + }, + { + "id": 899, + "stackSize": 16, + "name": "birch_hanging_sign", + "displayName": "Birch Hanging Sign" + }, + { + "id": 900, + "stackSize": 16, + "name": "jungle_hanging_sign", + "displayName": "Jungle Hanging Sign" + }, + { + "id": 901, + "stackSize": 16, + "name": "acacia_hanging_sign", + "displayName": "Acacia Hanging Sign" + }, + { + "id": 902, + "stackSize": 16, + "name": "cherry_hanging_sign", + "displayName": "Cherry Hanging Sign" + }, + { + "id": 903, + "stackSize": 16, + "name": "dark_oak_hanging_sign", + "displayName": "Dark Oak Hanging Sign" + }, + { + "id": 904, + "stackSize": 16, + "name": "mangrove_hanging_sign", + "displayName": "Mangrove Hanging Sign" + }, + { + "id": 905, + "stackSize": 16, + "name": "bamboo_hanging_sign", + "displayName": "Bamboo Hanging Sign" + }, + { + "id": 906, + "stackSize": 16, + "name": "crimson_hanging_sign", + "displayName": "Crimson Hanging Sign" + }, + { + "id": 907, + "stackSize": 16, + "name": "warped_hanging_sign", + "displayName": "Warped Hanging Sign" + }, + { + "id": 908, + "stackSize": 16, + "name": "bucket", + "displayName": "Bucket" + }, + { + "id": 909, + "stackSize": 1, + "name": "water_bucket", + "displayName": "Water Bucket" + }, + { + "id": 910, + "stackSize": 1, + "name": "lava_bucket", + "displayName": "Lava Bucket" + }, + { + "id": 911, + "stackSize": 1, + "name": "powder_snow_bucket", + "displayName": "Powder Snow Bucket" + }, + { + "id": 912, + "stackSize": 16, + "name": "snowball", + "displayName": "Snowball" + }, + { + "id": 913, + "stackSize": 64, + "name": "leather", + "displayName": "Leather" + }, + { + "id": 914, + "stackSize": 1, + "name": "milk_bucket", + "displayName": "Milk Bucket" + }, + { + "id": 915, + "stackSize": 1, + "name": "pufferfish_bucket", + "displayName": "Bucket of Pufferfish" + }, + { + "id": 916, + "stackSize": 1, + "name": "salmon_bucket", + "displayName": "Bucket of Salmon" + }, + { + "id": 917, + "stackSize": 1, + "name": "cod_bucket", + "displayName": "Bucket of Cod" + }, + { + "id": 918, + "stackSize": 1, + "name": "tropical_fish_bucket", + "displayName": "Bucket of Tropical Fish" + }, + { + "id": 919, + "stackSize": 1, + "name": "axolotl_bucket", + "displayName": "Bucket of Axolotl" + }, + { + "id": 920, + "stackSize": 1, + "name": "tadpole_bucket", + "displayName": "Bucket of Tadpole" + }, + { + "id": 921, + "stackSize": 64, + "name": "brick", + "displayName": "Brick" + }, + { + "id": 922, + "stackSize": 64, + "name": "clay_ball", + "displayName": "Clay Ball" + }, + { + "id": 923, + "stackSize": 64, + "name": "dried_kelp_block", + "displayName": "Dried Kelp Block" + }, + { + "id": 924, + "stackSize": 64, + "name": "paper", + "displayName": "Paper" + }, + { + "id": 925, + "displayName": "Book", + "name": "book", + "stackSize": 64, + "metadata": 0, + "variations": [ + { + "metadata": 0, + "id": 1166, + "name": "knowledge_book", + "displayName": "Knowledge Book", + "stackSize": 1 + } + ] + }, + { + "id": 926, + "stackSize": 64, + "name": "slime_ball", + "displayName": "Slimeball" + }, + { + "id": 927, + "stackSize": 16, + "name": "egg", + "displayName": "Egg" + }, + { + "id": 928, + "stackSize": 64, + "name": "compass", + "displayName": "Compass", + "enchantCategories": [ + "vanishable" + ] + }, + { + "id": 929, + "stackSize": 64, + "name": "recovery_compass", + "displayName": "Recovery Compass" + }, + { + "id": 930, + "displayName": "Bundle", + "name": "shulker_shell", + "stackSize": 1, + "metadata": 0, + "variations": [ + { + "metadata": 0, + "id": 1164, + "name": "shulker_shell", + "displayName": "Shulker Shell", + "stackSize": 64 + } + ] + }, + { + "id": 931, + "stackSize": 1, + "name": "fishing_rod", + "displayName": "Fishing Rod", + "enchantCategories": [ + "breakable", + "fishing_rod", + "vanishable" + ], + "maxDurability": 1 + }, + { + "id": 932, + "stackSize": 64, + "name": "clock", + "displayName": "Clock" + }, + { + "id": 933, + "stackSize": 1, + "name": "spyglass", + "displayName": "Spyglass" + }, + { + "id": 934, + "stackSize": 64, + "name": "glowstone_dust", + "displayName": "Glowstone Dust" + }, + { + "id": 935, + "stackSize": 64, + "name": "cod", + "displayName": "Raw Cod" + }, + { + "id": 936, + "stackSize": 64, + "name": "salmon", + "displayName": "Raw Salmon" + }, + { + "id": 937, + "stackSize": 64, + "name": "tropical_fish", + "displayName": "Tropical Fish" + }, + { + "id": 938, + "stackSize": 64, + "name": "pufferfish", + "displayName": "Pufferfish" + }, + { + "id": 939, + "stackSize": 64, + "name": "cooked_cod", + "displayName": "Cooked Cod" + }, + { + "id": 940, + "stackSize": 64, + "name": "cooked_salmon", + "displayName": "Cooked Salmon" + }, + { + "id": 941, + "stackSize": 64, + "name": "ink_sac", + "displayName": "Ink Sac" + }, + { + "id": 942, + "stackSize": 64, + "name": "glow_ink_sac", + "displayName": "Glow Ink Sac" + }, + { + "id": 943, + "stackSize": 64, + "name": "cocoa_beans", + "displayName": "Cocoa Beans" + }, + { + "id": 944, + "stackSize": 64, + "name": "white_dye", + "displayName": "White Dye" + }, + { + "id": 945, + "stackSize": 64, + "name": "orange_dye", + "displayName": "Orange Dye" + }, + { + "id": 946, + "stackSize": 64, + "name": "magenta_dye", + "displayName": "Magenta Dye" + }, + { + "id": 947, + "stackSize": 64, + "name": "light_blue_dye", + "displayName": "Light Blue Dye" + }, + { + "id": 948, + "stackSize": 64, + "name": "yellow_dye", + "displayName": "Yellow Dye" + }, + { + "id": 949, + "stackSize": 64, + "name": "lime_dye", + "displayName": "Lime Dye" + }, + { + "id": 950, + "stackSize": 64, + "name": "pink_dye", + "displayName": "Pink Dye" + }, + { + "id": 951, + "stackSize": 64, + "name": "gray_dye", + "displayName": "Gray Dye" + }, + { + "id": 952, + "stackSize": 64, + "name": "light_gray_dye", + "displayName": "Light Gray Dye" + }, + { + "id": 953, + "stackSize": 64, + "name": "cyan_dye", + "displayName": "Cyan Dye" + }, + { + "id": 954, + "stackSize": 64, + "name": "purple_dye", + "displayName": "Purple Dye" + }, + { + "id": 955, + "stackSize": 64, + "name": "blue_dye", + "displayName": "Blue Dye" + }, + { + "id": 956, + "stackSize": 64, + "name": "brown_dye", + "displayName": "Brown Dye" + }, + { + "id": 957, + "stackSize": 64, + "name": "green_dye", + "displayName": "Green Dye" + }, + { + "id": 958, + "stackSize": 64, + "name": "red_dye", + "displayName": "Red Dye" + }, + { + "id": 959, + "stackSize": 64, + "name": "black_dye", + "displayName": "Black Dye" + }, + { + "id": 960, + "stackSize": 64, + "name": "bone_meal", + "displayName": "Bone Meal" + }, + { + "id": 961, + "stackSize": 64, + "name": "bone", + "displayName": "Bone" + }, + { + "id": 962, + "stackSize": 64, + "name": "sugar", + "displayName": "Sugar" + }, + { + "id": 963, + "stackSize": 1, + "name": "cake", + "displayName": "Cake" + }, + { + "id": 964, + "displayName": "White Bed", + "name": "bed", + "stackSize": 1, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 965, + "name": "orange_bed", + "displayName": "Orange Bed", + "stackSize": 1 + }, + { + "metadata": 2, + "id": 966, + "name": "magenta_bed", + "displayName": "Magenta Bed", + "stackSize": 1 + }, + { + "metadata": 3, + "id": 967, + "name": "light_blue_bed", + "displayName": "Light Blue Bed", + "stackSize": 1 + }, + { + "metadata": 4, + "id": 968, + "name": "yellow_bed", + "displayName": "Yellow Bed", + "stackSize": 1 + }, + { + "metadata": 5, + "id": 969, + "name": "lime_bed", + "displayName": "Lime Bed", + "stackSize": 1 + }, + { + "metadata": 6, + "id": 970, + "name": "pink_bed", + "displayName": "Pink Bed", + "stackSize": 1 + }, + { + "metadata": 7, + "id": 971, + "name": "gray_bed", + "displayName": "Gray Bed", + "stackSize": 1 + }, + { + "metadata": 8, + "id": 972, + "name": "light_gray_bed", + "displayName": "Light Gray Bed", + "stackSize": 1 + }, + { + "metadata": 9, + "id": 973, + "name": "cyan_bed", + "displayName": "Cyan Bed", + "stackSize": 1 + }, + { + "metadata": 10, + "id": 974, + "name": "purple_bed", + "displayName": "Purple Bed", + "stackSize": 1 + }, + { + "metadata": 11, + "id": 975, + "name": "blue_bed", + "displayName": "Blue Bed", + "stackSize": 1 + }, + { + "metadata": 12, + "id": 976, + "name": "brown_bed", + "displayName": "Brown Bed", + "stackSize": 1 + }, + { + "metadata": 13, + "id": 977, + "name": "green_bed", + "displayName": "Green Bed", + "stackSize": 1 + }, + { + "metadata": 14, + "id": 978, + "name": "red_bed", + "displayName": "Red Bed", + "stackSize": 1 + }, + { + "metadata": 15, + "id": 979, + "name": "black_bed", + "displayName": "Black Bed", + "stackSize": 1 + } + ] + }, + { + "id": 980, + "stackSize": 64, + "name": "cookie", + "displayName": "Cookie" + }, + { + "id": 981, + "stackSize": 64, + "name": "crafter", + "displayName": "Crafter" + }, + { + "id": 982, + "stackSize": 64, + "name": "filled_map", + "displayName": "Map" + }, + { + "id": 983, + "stackSize": 1, + "name": "shears", + "displayName": "Shears", + "enchantCategories": [ + "digger", + "breakable", + "vanishable" + ], + "maxDurability": 1 + }, + { + "id": 984, + "stackSize": 64, + "name": "melon_slice", + "displayName": "Melon Slice" + }, + { + "id": 985, + "stackSize": 64, + "name": "dried_kelp", + "displayName": "Dried Kelp" + }, + { + "id": 986, + "stackSize": 64, + "name": "pumpkin_seeds", + "displayName": "Pumpkin Seeds" + }, + { + "id": 987, + "stackSize": 64, + "name": "melon_seeds", + "displayName": "Melon Seeds" + }, + { + "id": 988, + "stackSize": 64, + "name": "beef", + "displayName": "Raw Beef" + }, + { + "id": 989, + "stackSize": 64, + "name": "cooked_beef", + "displayName": "Steak" + }, + { + "id": 990, + "stackSize": 64, + "name": "chicken", + "displayName": "Raw Chicken" + }, + { + "id": 991, + "stackSize": 64, + "name": "cooked_chicken", + "displayName": "Cooked Chicken" + }, + { + "id": 992, + "stackSize": 64, + "name": "rotten_flesh", + "displayName": "Rotten Flesh" + }, + { + "id": 993, + "stackSize": 16, + "name": "ender_pearl", + "displayName": "Ender Pearl" + }, + { + "id": 994, + "stackSize": 64, + "name": "blaze_rod", + "displayName": "Blaze Rod" + }, + { + "id": 995, + "stackSize": 64, + "name": "ghast_tear", + "displayName": "Ghast Tear" + }, + { + "id": 996, + "stackSize": 64, + "name": "gold_nugget", + "displayName": "Gold Nugget" + }, + { + "id": 997, + "stackSize": 64, + "name": "nether_wart", + "displayName": "Nether Wart" + }, + { + "id": 998, + "stackSize": 1, + "name": "potion", + "displayName": "Potion" + }, + { + "id": 999, + "stackSize": 64, + "name": "glass_bottle", + "displayName": "Glass Bottle" + }, + { + "id": 1000, + "stackSize": 64, + "name": "spider_eye", + "displayName": "Spider Eye" + }, + { + "id": 1001, + "stackSize": 64, + "name": "fermented_spider_eye", + "displayName": "Fermented Spider Eye" + }, + { + "id": 1002, + "stackSize": 64, + "name": "blaze_powder", + "displayName": "Blaze Powder" + }, + { + "id": 1003, + "stackSize": 64, + "name": "magma_cream", + "displayName": "Magma Cream" + }, + { + "id": 1004, + "stackSize": 64, + "name": "brewing_stand", + "displayName": "Brewing Stand" + }, + { + "id": 1005, + "stackSize": 64, + "name": "cauldron", + "displayName": "Cauldron" + }, + { + "id": 1006, + "stackSize": 64, + "name": "ender_eye", + "displayName": "Eye of Ender" + }, + { + "id": 1007, + "stackSize": 64, + "name": "glistering_melon_slice", + "displayName": "Glistering Melon Slice" + }, + { + "id": 1008, + "stackSize": 64, + "name": "armadillo_spawn_egg", + "displayName": "Armadillo Spawn Egg" + }, + { + "id": 1009, + "stackSize": 64, + "name": "allay_spawn_egg", + "displayName": "Allay Spawn Egg" + }, + { + "id": 1010, + "stackSize": 64, + "name": "axolotl_spawn_egg", + "displayName": "Axolotl Spawn Egg" + }, + { + "id": 1011, + "stackSize": 64, + "name": "bat_spawn_egg", + "displayName": "Bat Spawn Egg" + }, + { + "id": 1012, + "stackSize": 64, + "name": "bee_spawn_egg", + "displayName": "Bee Spawn Egg" + }, + { + "id": 1013, + "stackSize": 64, + "name": "blaze_spawn_egg", + "displayName": "Blaze Spawn Egg" + }, + { + "id": 1014, + "stackSize": 64, + "name": "bogged_spawn_egg", + "displayName": "Bogged Spawn Egg" + }, + { + "id": 1015, + "stackSize": 64, + "name": "breeze_spawn_egg", + "displayName": "Breeze Spawn Egg" + }, + { + "id": 1016, + "stackSize": 64, + "name": "cat_spawn_egg", + "displayName": "Cat Spawn Egg" + }, + { + "id": 1017, + "stackSize": 64, + "name": "camel_spawn_egg", + "displayName": "Camel Spawn Egg" + }, + { + "id": 1018, + "stackSize": 64, + "name": "cave_spider_spawn_egg", + "displayName": "Cave Spider Spawn Egg" + }, + { + "id": 1019, + "stackSize": 64, + "name": "chicken_spawn_egg", + "displayName": "Chicken Spawn Egg" + }, + { + "id": 1020, + "stackSize": 64, + "name": "cod_spawn_egg", + "displayName": "Cod Spawn Egg" + }, + { + "id": 1021, + "stackSize": 64, + "name": "cow_spawn_egg", + "displayName": "Cow Spawn Egg" + }, + { + "id": 1022, + "stackSize": 64, + "name": "creeper_spawn_egg", + "displayName": "Creeper Spawn Egg" + }, + { + "id": 1023, + "stackSize": 64, + "name": "dolphin_spawn_egg", + "displayName": "Dolphin Spawn Egg" + }, + { + "id": 1024, + "stackSize": 64, + "name": "donkey_spawn_egg", + "displayName": "Donkey Spawn Egg" + }, + { + "id": 1025, + "stackSize": 64, + "name": "drowned_spawn_egg", + "displayName": "Drowned Spawn Egg" + }, + { + "id": 1026, + "stackSize": 64, + "name": "elder_guardian_spawn_egg", + "displayName": "Elder Guardian Spawn Egg" + }, + { + "id": 1027, + "stackSize": 64, + "name": "ender_dragon_spawn_egg", + "displayName": "Ender Dragon Spawn Egg" + }, + { + "id": 1028, + "stackSize": 64, + "name": "enderman_spawn_egg", + "displayName": "Enderman Spawn Egg" + }, + { + "id": 1029, + "stackSize": 64, + "name": "endermite_spawn_egg", + "displayName": "Endermite Spawn Egg" + }, + { + "id": 1030, + "stackSize": 64, + "name": "evoker_spawn_egg", + "displayName": "Evoker Spawn Egg" + }, + { + "id": 1031, + "stackSize": 64, + "name": "fox_spawn_egg", + "displayName": "Fox Spawn Egg" + }, + { + "id": 1032, + "stackSize": 64, + "name": "frog_spawn_egg", + "displayName": "Frog Spawn Egg" + }, + { + "id": 1033, + "stackSize": 64, + "name": "ghast_spawn_egg", + "displayName": "Ghast Spawn Egg" + }, + { + "id": 1034, + "stackSize": 64, + "name": "glow_squid_spawn_egg", + "displayName": "Glow Squid Spawn Egg" + }, + { + "id": 1035, + "stackSize": 64, + "name": "goat_spawn_egg", + "displayName": "Goat Spawn Egg" + }, + { + "id": 1036, + "stackSize": 64, + "name": "guardian_spawn_egg", + "displayName": "Guardian Spawn Egg" + }, + { + "id": 1037, + "stackSize": 64, + "name": "hoglin_spawn_egg", + "displayName": "Hoglin Spawn Egg" + }, + { + "id": 1038, + "stackSize": 64, + "name": "horse_spawn_egg", + "displayName": "Horse Spawn Egg" + }, + { + "id": 1039, + "stackSize": 64, + "name": "husk_spawn_egg", + "displayName": "Husk Spawn Egg" + }, + { + "id": 1040, + "stackSize": 64, + "name": "iron_golem_spawn_egg", + "displayName": "Iron Golem Spawn Egg" + }, + { + "id": 1041, + "stackSize": 64, + "name": "llama_spawn_egg", + "displayName": "Llama Spawn Egg" + }, + { + "id": 1042, + "stackSize": 64, + "name": "magma_cube_spawn_egg", + "displayName": "Magma Cube Spawn Egg" + }, + { + "id": 1043, + "stackSize": 64, + "name": "mooshroom_spawn_egg", + "displayName": "Mooshroom Spawn Egg" + }, + { + "id": 1044, + "stackSize": 64, + "name": "mule_spawn_egg", + "displayName": "Mule Spawn Egg" + }, + { + "id": 1045, + "stackSize": 64, + "name": "ocelot_spawn_egg", + "displayName": "Ocelot Spawn Egg" + }, + { + "id": 1046, + "stackSize": 64, + "name": "panda_spawn_egg", + "displayName": "Panda Spawn Egg" + }, + { + "id": 1047, + "stackSize": 64, + "name": "parrot_spawn_egg", + "displayName": "Parrot Spawn Egg" + }, + { + "id": 1048, + "stackSize": 64, + "name": "phantom_spawn_egg", + "displayName": "Phantom Spawn Egg" + }, + { + "id": 1049, + "stackSize": 64, + "name": "pig_spawn_egg", + "displayName": "Pig Spawn Egg" + }, + { + "id": 1050, + "stackSize": 64, + "name": "piglin_spawn_egg", + "displayName": "Piglin Spawn Egg" + }, + { + "id": 1051, + "stackSize": 64, + "name": "piglin_brute_spawn_egg", + "displayName": "Piglin Brute Spawn Egg" + }, + { + "id": 1052, + "stackSize": 64, + "name": "pillager_spawn_egg", + "displayName": "Pillager Spawn Egg" + }, + { + "id": 1053, + "stackSize": 64, + "name": "polar_bear_spawn_egg", + "displayName": "Polar Bear Spawn Egg" + }, + { + "id": 1054, + "stackSize": 64, + "name": "pufferfish_spawn_egg", + "displayName": "Pufferfish Spawn Egg" + }, + { + "id": 1055, + "stackSize": 64, + "name": "rabbit_spawn_egg", + "displayName": "Rabbit Spawn Egg" + }, + { + "id": 1056, + "stackSize": 64, + "name": "ravager_spawn_egg", + "displayName": "Ravager Spawn Egg" + }, + { + "id": 1057, + "stackSize": 64, + "name": "salmon_spawn_egg", + "displayName": "Salmon Spawn Egg" + }, + { + "id": 1058, + "stackSize": 64, + "name": "sheep_spawn_egg", + "displayName": "Sheep Spawn Egg" + }, + { + "id": 1059, + "stackSize": 64, + "name": "shulker_spawn_egg", + "displayName": "Shulker Spawn Egg" + }, + { + "id": 1060, + "stackSize": 64, + "name": "silverfish_spawn_egg", + "displayName": "Silverfish Spawn Egg" + }, + { + "id": 1061, + "stackSize": 64, + "name": "skeleton_spawn_egg", + "displayName": "Skeleton Spawn Egg" + }, + { + "id": 1062, + "stackSize": 64, + "name": "skeleton_horse_spawn_egg", + "displayName": "Skeleton Horse Spawn Egg" + }, + { + "id": 1063, + "stackSize": 64, + "name": "slime_spawn_egg", + "displayName": "Slime Spawn Egg" + }, + { + "id": 1064, + "stackSize": 64, + "name": "sniffer_spawn_egg", + "displayName": "Sniffer Spawn Egg" + }, + { + "id": 1065, + "stackSize": 64, + "name": "snow_golem_spawn_egg", + "displayName": "Snow Golem Spawn Egg" + }, + { + "id": 1066, + "stackSize": 64, + "name": "spider_spawn_egg", + "displayName": "Spider Spawn Egg" + }, + { + "id": 1067, + "stackSize": 64, + "name": "squid_spawn_egg", + "displayName": "Squid Spawn Egg" + }, + { + "id": 1068, + "stackSize": 64, + "name": "stray_spawn_egg", + "displayName": "Stray Spawn Egg" + }, + { + "id": 1069, + "stackSize": 64, + "name": "strider_spawn_egg", + "displayName": "Strider Spawn Egg" + }, + { + "id": 1070, + "stackSize": 64, + "name": "tadpole_spawn_egg", + "displayName": "Tadpole Spawn Egg" + }, + { + "id": 1071, + "stackSize": 64, + "name": "trader_llama_spawn_egg", + "displayName": "Trader Llama Spawn Egg" + }, + { + "id": 1072, + "stackSize": 64, + "name": "tropical_fish_spawn_egg", + "displayName": "Tropical Fish Spawn Egg" + }, + { + "id": 1073, + "stackSize": 64, + "name": "turtle_spawn_egg", + "displayName": "Turtle Spawn Egg" + }, + { + "id": 1074, + "stackSize": 64, + "name": "vex_spawn_egg", + "displayName": "Vex Spawn Egg" + }, + { + "id": 1075, + "stackSize": 64, + "name": "villager_spawn_egg", + "displayName": "Villager Spawn Egg" + }, + { + "id": 1076, + "stackSize": 64, + "name": "vindicator_spawn_egg", + "displayName": "Vindicator Spawn Egg" + }, + { + "id": 1077, + "stackSize": 64, + "name": "wandering_trader_spawn_egg", + "displayName": "Wandering Trader Spawn Egg" + }, + { + "id": 1078, + "stackSize": 64, + "name": "warden_spawn_egg", + "displayName": "Warden Spawn Egg" + }, + { + "id": 1079, + "stackSize": 64, + "name": "witch_spawn_egg", + "displayName": "Witch Spawn Egg" + }, + { + "id": 1080, + "stackSize": 64, + "name": "wither_spawn_egg", + "displayName": "Wither Spawn Egg" + }, + { + "id": 1081, + "stackSize": 64, + "name": "wither_skeleton_spawn_egg", + "displayName": "Wither Skeleton Spawn Egg" + }, + { + "id": 1082, + "stackSize": 64, + "name": "wolf_spawn_egg", + "displayName": "Wolf Spawn Egg" + }, + { + "id": 1083, + "stackSize": 64, + "name": "zoglin_spawn_egg", + "displayName": "Zoglin Spawn Egg" + }, + { + "id": 1084, + "stackSize": 64, + "name": "zombie_spawn_egg", + "displayName": "Zombie Spawn Egg" + }, + { + "id": 1085, + "stackSize": 64, + "name": "zombie_horse_spawn_egg", + "displayName": "Zombie Horse Spawn Egg" + }, + { + "id": 1086, + "stackSize": 64, + "name": "zombie_villager_spawn_egg", + "displayName": "Zombie Villager Spawn Egg" + }, + { + "id": 1087, + "stackSize": 64, + "name": "zombie_pigman_spawn_egg", + "displayName": "Zombified Piglin Spawn Egg" + }, + { + "id": 1088, + "stackSize": 64, + "name": "experience_bottle", + "displayName": "Bottle o' Enchanting" + }, + { + "id": 1089, + "stackSize": 64, + "name": "fire_charge", + "displayName": "Fire Charge" + }, + { + "id": 1090, + "stackSize": 64, + "name": "wind_charge", + "displayName": "Wind Charge" + }, + { + "id": 1091, + "stackSize": 1, + "name": "writable_book", + "displayName": "Book and Quill" + }, + { + "id": 1092, + "stackSize": 16, + "name": "written_book", + "displayName": "Written Book" + }, + { + "id": 1093, + "stackSize": 1, + "name": "mace", + "displayName": "Mace" + }, + { + "id": 1094, + "stackSize": 64, + "name": "frame", + "displayName": "Item Frame" + }, + { + "id": 1095, + "stackSize": 64, + "name": "glow_frame", + "displayName": "Glow Item Frame" + }, + { + "id": 1096, + "stackSize": 64, + "name": "flower_pot", + "displayName": "Flower Pot" + }, + { + "id": 1097, + "stackSize": 64, + "name": "carrot", + "displayName": "Carrot" + }, + { + "id": 1098, + "stackSize": 64, + "name": "potato", + "displayName": "Potato" + }, + { + "id": 1099, + "stackSize": 64, + "name": "baked_potato", + "displayName": "Baked Potato" + }, + { + "id": 1100, + "stackSize": 64, + "name": "poisonous_potato", + "displayName": "Poisonous Potato" + }, + { + "id": 1101, + "stackSize": 64, + "name": "empty_map", + "displayName": "Empty Map" + }, + { + "id": 1102, + "stackSize": 64, + "name": "golden_carrot", + "displayName": "Golden Carrot" + }, + { + "id": 1103, + "displayName": "Skeleton Skull", + "name": "skull", + "stackSize": 64, + "metadata": 0, + "enchantCategories": [ + "wearable", + "vanishable" + ], + "variations": [ + { + "metadata": 1, + "id": 1104, + "name": "wither_skeleton_skull", + "displayName": "Wither Skeleton Skull", + "stackSize": 64, + "enchantCategories": [ + "wearable", + "vanishable" + ] + }, + { + "metadata": 2, + "id": 1106, + "name": "zombie_head", + "displayName": "Zombie Head", + "stackSize": 64, + "enchantCategories": [ + "wearable", + "vanishable" + ] + }, + { + "metadata": 3, + "id": 1105, + "name": "player_head", + "displayName": "Player Head", + "stackSize": 64, + "enchantCategories": [ + "wearable", + "vanishable" + ] + }, + { + "metadata": 4, + "id": 1107, + "name": "creeper_head", + "displayName": "Creeper Head", + "stackSize": 64, + "enchantCategories": [ + "wearable", + "vanishable" + ] + }, + { + "metadata": 5, + "id": 1108, + "name": "dragon_head", + "displayName": "Dragon Head", + "stackSize": 64, + "enchantCategories": [ + "wearable", + "vanishable" + ] + }, + { + "metadata": 6, + "id": 1109, + "name": "piglin_head", + "displayName": "Piglin Head", + "stackSize": 64, + "enchantCategories": [ + "wearable", + "vanishable" + ] + } + ] + }, + { + "id": 1110, + "stackSize": 64, + "name": "nether_star", + "displayName": "Nether Star" + }, + { + "id": 1111, + "stackSize": 64, + "name": "pumpkin_pie", + "displayName": "Pumpkin Pie" + }, + { + "id": 1112, + "stackSize": 64, + "name": "firework_rocket", + "displayName": "Firework Rocket" + }, + { + "id": 1113, + "stackSize": 64, + "name": "firework_star", + "displayName": "Firework Star" + }, + { + "id": 1114, + "stackSize": 1, + "name": "enchanted_book", + "displayName": "Enchanted Book" + }, + { + "id": 1115, + "stackSize": 64, + "name": "netherbrick", + "displayName": "Nether Brick" + }, + { + "id": 1116, + "stackSize": 64, + "name": "prismarine_shard", + "displayName": "Prismarine Shard" + }, + { + "id": 1117, + "stackSize": 64, + "name": "prismarine_crystals", + "displayName": "Prismarine Crystals" + }, + { + "id": 1118, + "stackSize": 64, + "name": "rabbit", + "displayName": "Raw Rabbit" + }, + { + "id": 1119, + "stackSize": 64, + "name": "cooked_rabbit", + "displayName": "Cooked Rabbit" + }, + { + "id": 1120, + "stackSize": 1, + "name": "rabbit_stew", + "displayName": "Rabbit Stew" + }, + { + "id": 1121, + "stackSize": 64, + "name": "rabbit_foot", + "displayName": "Rabbit's Foot" + }, + { + "id": 1122, + "stackSize": 64, + "name": "rabbit_hide", + "displayName": "Rabbit Hide" + }, + { + "id": 1123, + "stackSize": 16, + "name": "armor_stand", + "displayName": "Armor Stand" + }, + { + "id": 1124, + "stackSize": 1, + "name": "iron_horse_armor", + "displayName": "Iron Horse Armor" + }, + { + "id": 1125, + "stackSize": 1, + "name": "golden_horse_armor", + "displayName": "Golden Horse Armor" + }, + { + "id": 1126, + "stackSize": 1, + "name": "diamond_horse_armor", + "displayName": "Diamond Horse Armor" + }, + { + "id": 1127, + "stackSize": 1, + "name": "leather_horse_armor", + "displayName": "Leather Horse Armor" + }, + { + "id": 1128, + "stackSize": 64, + "name": "lead", + "displayName": "Lead" + }, + { + "id": 1129, + "stackSize": 64, + "name": "name_tag", + "displayName": "Name Tag" + }, + { + "id": 1130, + "stackSize": 1, + "name": "command_block_minecart", + "displayName": "Minecart with Command Block" + }, + { + "id": 1131, + "stackSize": 64, + "name": "mutton", + "displayName": "Raw Mutton" + }, + { + "id": 1132, + "stackSize": 64, + "name": "cooked_mutton", + "displayName": "Cooked Mutton" + }, + { + "id": 1148, + "displayName": "Black Banner", + "name": "banner", + "stackSize": 16, + "metadata": 0, + "variations": [ + { + "metadata": 1, + "id": 1147, + "name": "red_banner", + "displayName": "Red Banner", + "stackSize": 16 + }, + { + "metadata": 2, + "id": 1146, + "name": "green_banner", + "displayName": "Green Banner", + "stackSize": 16 + }, + { + "metadata": 3, + "id": 1145, + "name": "brown_banner", + "displayName": "Brown Banner", + "stackSize": 16 + }, + { + "metadata": 4, + "id": 1144, + "name": "blue_banner", + "displayName": "Blue Banner", + "stackSize": 16 + }, + { + "metadata": 5, + "id": 1143, + "name": "purple_banner", + "displayName": "Purple Banner", + "stackSize": 16 + }, + { + "metadata": 6, + "id": 1142, + "name": "cyan_banner", + "displayName": "Cyan Banner", + "stackSize": 16 + }, + { + "metadata": 7, + "id": 1141, + "name": "light_gray_banner", + "displayName": "Light Gray Banner", + "stackSize": 16 + }, + { + "metadata": 8, + "id": 1140, + "name": "gray_banner", + "displayName": "Gray Banner", + "stackSize": 16 + }, + { + "metadata": 9, + "id": 1139, + "name": "pink_banner", + "displayName": "Pink Banner", + "stackSize": 16 + }, + { + "metadata": 10, + "id": 1138, + "name": "lime_banner", + "displayName": "Lime Banner", + "stackSize": 16 + }, + { + "metadata": 11, + "id": 1137, + "name": "yellow_banner", + "displayName": "Yellow Banner", + "stackSize": 16 + }, + { + "metadata": 12, + "id": 1136, + "name": "light_blue_banner", + "displayName": "Light Blue Banner", + "stackSize": 16 + }, + { + "metadata": 13, + "id": 1135, + "name": "magenta_banner", + "displayName": "Magenta Banner", + "stackSize": 16 + }, + { + "metadata": 14, + "id": 1134, + "name": "orange_banner", + "displayName": "Orange Banner", + "stackSize": 16 + }, + { + "metadata": 15, + "id": 1133, + "name": "white_banner", + "displayName": "White Banner", + "stackSize": 16 + } + ] + }, + { + "id": 1149, + "stackSize": 64, + "name": "end_crystal", + "displayName": "End Crystal" + }, + { + "id": 1150, + "stackSize": 64, + "name": "chorus_fruit", + "displayName": "Chorus Fruit" + }, + { + "id": 1151, + "stackSize": 64, + "name": "popped_chorus_fruit", + "displayName": "Popped Chorus Fruit" + }, + { + "id": 1152, + "stackSize": 64, + "name": "torchflower_seeds", + "displayName": "Torchflower Seeds" + }, + { + "id": 1153, + "stackSize": 64, + "name": "pitcher_pod", + "displayName": "Pitcher Pod" + }, + { + "id": 1154, + "stackSize": 64, + "name": "beetroot", + "displayName": "Beetroot" + }, + { + "id": 1155, + "stackSize": 64, + "name": "beetroot_seeds", + "displayName": "Beetroot Seeds" + }, + { + "id": 1156, + "stackSize": 1, + "name": "beetroot_soup", + "displayName": "Beetroot Soup" + }, + { + "id": 1157, + "stackSize": 64, + "name": "dragon_breath", + "displayName": "Dragon's Breath" + }, + { + "id": 1158, + "stackSize": 1, + "name": "splash_potion", + "displayName": "Splash Potion" + }, + { + "id": 1161, + "stackSize": 1, + "name": "lingering_potion", + "displayName": "Lingering Potion" + }, + { + "id": 1162, + "stackSize": 1, + "name": "shield", + "displayName": "Shield", + "enchantCategories": [ + "breakable", + "vanishable" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 1 + }, + { + "id": 1163, + "stackSize": 1, + "name": "totem_of_undying", + "displayName": "Totem of Undying" + }, + { + "id": 1165, + "stackSize": 64, + "name": "iron_nugget", + "displayName": "Iron Nugget" + }, + { + "id": 1168, + "stackSize": 1, + "name": "music_disc_13", + "displayName": "Music Disc" + }, + { + "id": 1169, + "stackSize": 1, + "name": "music_disc_cat", + "displayName": "Music Disc" + }, + { + "id": 1170, + "stackSize": 1, + "name": "music_disc_blocks", + "displayName": "Music Disc" + }, + { + "id": 1171, + "stackSize": 1, + "name": "music_disc_chirp", + "displayName": "Music Disc" + }, + { + "id": 1172, + "stackSize": 1, + "name": "music_disc_far", + "displayName": "Music Disc" + }, + { + "id": 1173, + "stackSize": 1, + "name": "music_disc_mall", + "displayName": "Music Disc" + }, + { + "id": 1174, + "stackSize": 1, + "name": "music_disc_mellohi", + "displayName": "Music Disc" + }, + { + "id": 1175, + "stackSize": 1, + "name": "music_disc_stal", + "displayName": "Music Disc" + }, + { + "id": 1176, + "stackSize": 1, + "name": "music_disc_strad", + "displayName": "Music Disc" + }, + { + "id": 1177, + "stackSize": 1, + "name": "music_disc_ward", + "displayName": "Music Disc" + }, + { + "id": 1178, + "stackSize": 1, + "name": "music_disc_11", + "displayName": "Music Disc" + }, + { + "id": 1179, + "stackSize": 1, + "name": "music_disc_wait", + "displayName": "Music Disc" + }, + { + "id": 1180, + "stackSize": 1, + "name": "music_disc_otherside", + "displayName": "Music Disc" + }, + { + "id": 1181, + "stackSize": 1, + "name": "music_disc_relic", + "displayName": "Music Disc" + }, + { + "id": 1182, + "stackSize": 1, + "name": "music_disc_5", + "displayName": "Music Disc" + }, + { + "id": 1183, + "stackSize": 1, + "name": "music_disc_pigstep", + "displayName": "Music Disc" + }, + { + "id": 1184, + "stackSize": 64, + "name": "disc_fragment_5", + "displayName": "Disc Fragment" + }, + { + "id": 1185, + "stackSize": 1, + "name": "trident", + "displayName": "Trident", + "enchantCategories": [ + "breakable", + "trident", + "vanishable" + ], + "maxDurability": 1 + }, + { + "id": 1186, + "stackSize": 64, + "name": "phantom_membrane", + "displayName": "Phantom Membrane" + }, + { + "id": 1187, + "stackSize": 64, + "name": "nautilus_shell", + "displayName": "Nautilus Shell" + }, + { + "id": 1188, + "stackSize": 64, + "name": "heart_of_the_sea", + "displayName": "Heart of the Sea" + }, + { + "id": 1189, + "stackSize": 1, + "name": "crossbow", + "displayName": "Crossbow", + "enchantCategories": [ + "breakable", + "crossbow", + "vanishable" + ], + "maxDurability": 1 + }, + { + "id": 1190, + "stackSize": 1, + "name": "suspicious_stew", + "displayName": "Suspicious Stew" + }, + { + "id": 1191, + "stackSize": 64, + "name": "loom", + "displayName": "Loom" + }, + { + "id": 1192, + "stackSize": 1, + "name": "flower_banner_pattern", + "displayName": "Banner Pattern" + }, + { + "id": 1193, + "stackSize": 1, + "name": "creeper_banner_pattern", + "displayName": "Banner Pattern" + }, + { + "id": 1194, + "stackSize": 1, + "name": "skull_banner_pattern", + "displayName": "Banner Pattern" + }, + { + "id": 1195, + "stackSize": 1, + "name": "mojang_banner_pattern", + "displayName": "Banner Pattern" + }, + { + "id": 1196, + "stackSize": 1, + "name": "globe_banner_pattern", + "displayName": "Banner Pattern" + }, + { + "id": 1197, + "stackSize": 1, + "name": "piglin_banner_pattern", + "displayName": "Banner Pattern" + }, + { + "id": 1198, + "stackSize": 1, + "name": "flow_banner_pattern", + "displayName": "Banner Pattern" + }, + { + "id": 1199, + "stackSize": 1, + "name": "guster_banner_pattern", + "displayName": "Banner Pattern" + }, + { + "id": 1200, + "stackSize": 1, + "name": "goat_horn", + "displayName": "Goat Horn" + }, + { + "id": 1201, + "stackSize": 64, + "name": "composter", + "displayName": "Composter" + }, + { + "id": 1202, + "stackSize": 64, + "name": "barrel", + "displayName": "Barrel" + }, + { + "id": 1203, + "stackSize": 64, + "name": "smoker", + "displayName": "Smoker" + }, + { + "id": 1204, + "stackSize": 64, + "name": "blast_furnace", + "displayName": "Blast Furnace" + }, + { + "id": 1205, + "stackSize": 64, + "name": "cartography_table", + "displayName": "Cartography Table" + }, + { + "id": 1206, + "stackSize": 64, + "name": "fletching_table", + "displayName": "Fletching Table" + }, + { + "id": 1207, + "stackSize": 64, + "name": "grindstone", + "displayName": "Grindstone" + }, + { + "id": 1208, + "stackSize": 64, + "name": "smithing_table", + "displayName": "Smithing Table" + }, + { + "id": 1209, + "stackSize": 64, + "name": "stonecutter_block", + "displayName": "Stonecutter" + }, + { + "id": 1210, + "stackSize": 64, + "name": "bell", + "displayName": "Bell" + }, + { + "id": 1211, + "stackSize": 64, + "name": "lantern", + "displayName": "Lantern" + }, + { + "id": 1212, + "stackSize": 64, + "name": "soul_lantern", + "displayName": "Soul Lantern" + }, + { + "id": 1213, + "stackSize": 64, + "name": "sweet_berries", + "displayName": "Sweet Berries" + }, + { + "id": 1214, + "stackSize": 64, + "name": "glow_berries", + "displayName": "Glow Berries" + }, + { + "id": 1215, + "stackSize": 64, + "name": "campfire", + "displayName": "Campfire" + }, + { + "id": 1216, + "stackSize": 64, + "name": "soul_campfire", + "displayName": "Soul Campfire" + }, + { + "id": 1217, + "stackSize": 64, + "name": "shroomlight", + "displayName": "Shroomlight" + }, + { + "id": 1218, + "stackSize": 64, + "name": "honeycomb", + "displayName": "Honeycomb" + }, + { + "id": 1219, + "stackSize": 64, + "name": "bee_nest", + "displayName": "Bee Nest" + }, + { + "id": 1220, + "stackSize": 64, + "name": "beehive", + "displayName": "Beehive" + }, + { + "id": 1221, + "stackSize": 16, + "name": "honey_bottle", + "displayName": "Honey Bottle" + }, + { + "id": 1222, + "stackSize": 64, + "name": "honeycomb_block", + "displayName": "Honeycomb Block" + }, + { + "id": 1223, + "stackSize": 64, + "name": "lodestone", + "displayName": "Lodestone" + }, + { + "id": 1224, + "stackSize": 64, + "name": "crying_obsidian", + "displayName": "Crying Obsidian" + }, + { + "id": 1225, + "stackSize": 64, + "name": "blackstone", + "displayName": "Blackstone" + }, + { + "id": 1226, + "stackSize": 64, + "name": "blackstone_slab", + "displayName": "Blackstone Slab" + }, + { + "id": 1227, + "stackSize": 64, + "name": "blackstone_stairs", + "displayName": "Blackstone Stairs" + }, + { + "id": 1228, + "stackSize": 64, + "name": "gilded_blackstone", + "displayName": "Gilded Blackstone" + }, + { + "id": 1229, + "stackSize": 64, + "name": "polished_blackstone", + "displayName": "Polished Blackstone" + }, + { + "id": 1230, + "stackSize": 64, + "name": "polished_blackstone_slab", + "displayName": "Polished Blackstone Slab" + }, + { + "id": 1231, + "stackSize": 64, + "name": "polished_blackstone_stairs", + "displayName": "Polished Blackstone Stairs" + }, + { + "id": 1232, + "stackSize": 64, + "name": "chiseled_polished_blackstone", + "displayName": "Chiseled Polished Blackstone" + }, + { + "id": 1233, + "stackSize": 64, + "name": "polished_blackstone_bricks", + "displayName": "Polished Blackstone Bricks" + }, + { + "id": 1234, + "stackSize": 64, + "name": "polished_blackstone_brick_slab", + "displayName": "Polished Blackstone Brick Slab" + }, + { + "id": 1235, + "stackSize": 64, + "name": "polished_blackstone_brick_stairs", + "displayName": "Polished Blackstone Brick Stairs" + }, + { + "id": 1236, + "stackSize": 64, + "name": "cracked_polished_blackstone_bricks", + "displayName": "Cracked Polished Blackstone Bricks" + }, + { + "id": 1237, + "stackSize": 64, + "name": "respawn_anchor", + "displayName": "Respawn Anchor" + }, + { + "id": 1238, + "stackSize": 64, + "name": "candle", + "displayName": "Candle" + }, + { + "id": 1239, + "stackSize": 64, + "name": "white_candle", + "displayName": "White Candle" + }, + { + "id": 1240, + "stackSize": 64, + "name": "orange_candle", + "displayName": "Orange Candle" + }, + { + "id": 1241, + "stackSize": 64, + "name": "magenta_candle", + "displayName": "Magenta Candle" + }, + { + "id": 1242, + "stackSize": 64, + "name": "light_blue_candle", + "displayName": "Light Blue Candle" + }, + { + "id": 1243, + "stackSize": 64, + "name": "yellow_candle", + "displayName": "Yellow Candle" + }, + { + "id": 1244, + "stackSize": 64, + "name": "lime_candle", + "displayName": "Lime Candle" + }, + { + "id": 1245, + "stackSize": 64, + "name": "pink_candle", + "displayName": "Pink Candle" + }, + { + "id": 1246, + "stackSize": 64, + "name": "gray_candle", + "displayName": "Gray Candle" + }, + { + "id": 1247, + "stackSize": 64, + "name": "light_gray_candle", + "displayName": "Light Gray Candle" + }, + { + "id": 1248, + "stackSize": 64, + "name": "cyan_candle", + "displayName": "Cyan Candle" + }, + { + "id": 1249, + "stackSize": 64, + "name": "purple_candle", + "displayName": "Purple Candle" + }, + { + "id": 1250, + "stackSize": 64, + "name": "blue_candle", + "displayName": "Blue Candle" + }, + { + "id": 1251, + "stackSize": 64, + "name": "brown_candle", + "displayName": "Brown Candle" + }, + { + "id": 1252, + "stackSize": 64, + "name": "green_candle", + "displayName": "Green Candle" + }, + { + "id": 1253, + "stackSize": 64, + "name": "red_candle", + "displayName": "Red Candle" + }, + { + "id": 1254, + "stackSize": 64, + "name": "black_candle", + "displayName": "Black Candle" + }, + { + "id": 1255, + "stackSize": 64, + "name": "small_amethyst_bud", + "displayName": "Small Amethyst Bud" + }, + { + "id": 1256, + "stackSize": 64, + "name": "medium_amethyst_bud", + "displayName": "Medium Amethyst Bud" + }, + { + "id": 1257, + "stackSize": 64, + "name": "large_amethyst_bud", + "displayName": "Large Amethyst Bud" + }, + { + "id": 1258, + "stackSize": 64, + "name": "amethyst_cluster", + "displayName": "Amethyst Cluster" + }, + { + "id": 1259, + "stackSize": 64, + "name": "pointed_dripstone", + "displayName": "Pointed Dripstone" + }, + { + "id": 1260, + "stackSize": 64, + "name": "ochre_froglight", + "displayName": "Ochre Froglight" + }, + { + "id": 1261, + "stackSize": 64, + "name": "verdant_froglight", + "displayName": "Verdant Froglight" + }, + { + "id": 1262, + "stackSize": 64, + "name": "pearlescent_froglight", + "displayName": "Pearlescent Froglight" + }, + { + "id": 1263, + "stackSize": 64, + "name": "frog_spawn", + "displayName": "Frogspawn" + }, + { + "id": 1264, + "stackSize": 64, + "name": "echo_shard", + "displayName": "Echo Shard" + }, + { + "id": 1265, + "stackSize": 1, + "name": "brush", + "displayName": "Brush", + "enchantCategories": [ + "breakable", + "vanishable" + ], + "maxDurability": 1 + }, + { + "id": 1266, + "stackSize": 64, + "name": "netherite_upgrade_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1267, + "stackSize": 64, + "name": "sentry_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1268, + "stackSize": 64, + "name": "dune_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1269, + "stackSize": 64, + "name": "coast_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1270, + "stackSize": 64, + "name": "wild_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1271, + "stackSize": 64, + "name": "ward_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1272, + "stackSize": 64, + "name": "eye_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1273, + "stackSize": 64, + "name": "vex_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1274, + "stackSize": 64, + "name": "tide_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1275, + "stackSize": 64, + "name": "snout_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1276, + "stackSize": 64, + "name": "rib_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1277, + "stackSize": 64, + "name": "spire_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1278, + "stackSize": 64, + "name": "wayfinder_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1279, + "stackSize": 64, + "name": "shaper_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1280, + "stackSize": 64, + "name": "silence_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1281, + "stackSize": 64, + "name": "raiser_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1282, + "stackSize": 64, + "name": "host_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1283, + "stackSize": 64, + "name": "flow_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1284, + "stackSize": 64, + "name": "bolt_armor_trim_smithing_template", + "displayName": "Smithing Template" + }, + { + "id": 1285, + "stackSize": 64, + "name": "angler_pottery_sherd", + "displayName": "Angler Pottery Sherd" + }, + { + "id": 1286, + "stackSize": 64, + "name": "archer_pottery_sherd", + "displayName": "Archer Pottery Sherd" + }, + { + "id": 1287, + "stackSize": 64, + "name": "arms_up_pottery_sherd", + "displayName": "Arms Up Pottery Sherd" + }, + { + "id": 1288, + "stackSize": 64, + "name": "blade_pottery_sherd", + "displayName": "Blade Pottery Sherd" + }, + { + "id": 1289, + "stackSize": 64, + "name": "brewer_pottery_sherd", + "displayName": "Brewer Pottery Sherd" + }, + { + "id": 1290, + "stackSize": 64, + "name": "burn_pottery_sherd", + "displayName": "Burn Pottery Sherd" + }, + { + "id": 1291, + "stackSize": 64, + "name": "danger_pottery_sherd", + "displayName": "Danger Pottery Sherd" + }, + { + "id": 1292, + "stackSize": 64, + "name": "explorer_pottery_sherd", + "displayName": "Explorer Pottery Sherd" + }, + { + "id": 1293, + "stackSize": 64, + "name": "flow_pottery_sherd", + "displayName": "Flow Pottery Sherd" + }, + { + "id": 1294, + "stackSize": 64, + "name": "friend_pottery_sherd", + "displayName": "Friend Pottery Sherd" + }, + { + "id": 1295, + "stackSize": 64, + "name": "guster_pottery_sherd", + "displayName": "Guster Pottery Sherd" + }, + { + "id": 1296, + "stackSize": 64, + "name": "heart_pottery_sherd", + "displayName": "Heart Pottery Sherd" + }, + { + "id": 1297, + "stackSize": 64, + "name": "heartbreak_pottery_sherd", + "displayName": "Heartbreak Pottery Sherd" + }, + { + "id": 1298, + "stackSize": 64, + "name": "howl_pottery_sherd", + "displayName": "Howl Pottery Sherd" + }, + { + "id": 1299, + "stackSize": 64, + "name": "miner_pottery_sherd", + "displayName": "Miner Pottery Sherd" + }, + { + "id": 1300, + "stackSize": 64, + "name": "mourner_pottery_sherd", + "displayName": "Mourner Pottery Sherd" + }, + { + "id": 1301, + "stackSize": 64, + "name": "plenty_pottery_sherd", + "displayName": "Plenty Pottery Sherd" + }, + { + "id": 1302, + "stackSize": 64, + "name": "prize_pottery_sherd", + "displayName": "Prize Pottery Sherd" + }, + { + "id": 1303, + "stackSize": 64, + "name": "scrape_pottery_sherd", + "displayName": "Scrape Pottery Sherd" + }, + { + "id": 1304, + "stackSize": 64, + "name": "sheaf_pottery_sherd", + "displayName": "Sheaf Pottery Sherd" + }, + { + "id": 1305, + "stackSize": 64, + "name": "shelter_pottery_sherd", + "displayName": "Shelter Pottery Sherd" + }, + { + "id": 1306, + "stackSize": 64, + "name": "skull_pottery_sherd", + "displayName": "Skull Pottery Sherd" + }, + { + "id": 1307, + "stackSize": 64, + "name": "snort_pottery_sherd", + "displayName": "Snort Pottery Sherd" + }, + { + "id": 1308, + "stackSize": 64, + "name": "copper_grate", + "displayName": "Copper Grate" + }, + { + "id": 1309, + "stackSize": 64, + "name": "exposed_copper_grate", + "displayName": "Exposed Copper Grate" + }, + { + "id": 1310, + "stackSize": 64, + "name": "weathered_copper_grate", + "displayName": "Weathered Copper Grate" + }, + { + "id": 1311, + "stackSize": 64, + "name": "oxidized_copper_grate", + "displayName": "Oxidized Copper Grate" + }, + { + "id": 1312, + "stackSize": 64, + "name": "waxed_copper_grate", + "displayName": "Waxed Copper Grate" + }, + { + "id": 1313, + "stackSize": 64, + "name": "waxed_exposed_copper_grate", + "displayName": "Waxed Exposed Copper Grate" + }, + { + "id": 1314, + "stackSize": 64, + "name": "waxed_weathered_copper_grate", + "displayName": "Waxed Weathered Copper Grate" + }, + { + "id": 1315, + "stackSize": 64, + "name": "waxed_oxidized_copper_grate", + "displayName": "Waxed Oxidized Copper Grate" + }, + { + "id": 1316, + "stackSize": 64, + "name": "copper_bulb", + "displayName": "Copper Bulb" + }, + { + "id": 1317, + "stackSize": 64, + "name": "exposed_copper_bulb", + "displayName": "Exposed Copper Bulb" + }, + { + "id": 1318, + "stackSize": 64, + "name": "weathered_copper_bulb", + "displayName": "Weathered Copper Bulb" + }, + { + "id": 1319, + "stackSize": 64, + "name": "oxidized_copper_bulb", + "displayName": "Oxidized Copper Bulb" + }, + { + "id": 1320, + "stackSize": 64, + "name": "waxed_copper_bulb", + "displayName": "Waxed Copper Bulb" + }, + { + "id": 1321, + "stackSize": 64, + "name": "waxed_exposed_copper_bulb", + "displayName": "Waxed Exposed Copper Bulb" + }, + { + "id": 1322, + "stackSize": 64, + "name": "waxed_weathered_copper_bulb", + "displayName": "Waxed Weathered Copper Bulb" + }, + { + "id": 1323, + "stackSize": 64, + "name": "waxed_oxidized_copper_bulb", + "displayName": "Waxed Oxidized Copper Bulb" + }, + { + "id": 1324, + "stackSize": 64, + "name": "trial_spawner", + "displayName": "Trial Spawner" + }, + { + "id": 1325, + "stackSize": 64, + "name": "trial_key", + "displayName": "Trial Key" + }, + { + "id": 1326, + "stackSize": 64, + "name": "ominous_trial_key", + "displayName": "Ominous Trial Key" + }, + { + "id": 1327, + "stackSize": 64, + "name": "vault", + "displayName": "Vault" + }, + { + "id": 1328, + "stackSize": 64, + "name": "ominous_bottle", + "displayName": "Ominous Bottle" + }, + { + "id": 1329, + "stackSize": 64, + "name": "breeze_rod", + "displayName": "Breeze Rod" + }, + { + "id": 9007, + "stackSize": 1, + "name": "element_94", + "displayName": "Element 94" + }, + { + "id": 9014, + "stackSize": 1, + "name": "element_25", + "displayName": "Element 25" + }, + { + "id": 9024, + "stackSize": 1, + "name": "element_43", + "displayName": "Element 43" + }, + { + "id": 9027, + "stackSize": 1, + "name": "element_50", + "displayName": "Element 50" + }, + { + "id": 9047, + "stackSize": 1, + "name": "element_15", + "displayName": "Element 15" + }, + { + "id": 9052, + "stackSize": 1, + "name": "element_68", + "displayName": "Element 68" + }, + { + "id": 9053, + "stackSize": 1, + "name": "hard_blue_stained_glass", + "displayName": "Hard Blue Stained Glass" + }, + { + "id": 9058, + "stackSize": 1, + "name": "element_7", + "displayName": "Element 7" + }, + { + "id": 9063, + "stackSize": 1, + "name": "portal", + "displayName": "Portal" + }, + { + "id": 9076, + "stackSize": 1, + "name": "item.iron_door", + "displayName": "Iron Door" + }, + { + "id": 9078, + "stackSize": 1, + "name": "hard_brown_stained_glass", + "displayName": "Hard Brown Stained Glass" + }, + { + "id": 9082, + "stackSize": 1, + "name": "element_27", + "displayName": "Element 27" + }, + { + "id": 9089, + "stackSize": 1, + "name": "wooden_slab", + "displayName": "Wooden Slab" + }, + { + "id": 9097, + "stackSize": 1, + "name": "sparkler", + "displayName": "Sparkler" + }, + { + "id": 9099, + "stackSize": 1, + "name": "element_61", + "displayName": "Element 61" + }, + { + "id": 9105, + "stackSize": 1, + "name": "magenta_candle_cake", + "displayName": "Magenta Candle Cake" + }, + { + "id": 9106, + "stackSize": 1, + "name": "item.campfire", + "displayName": "Campfire" + }, + { + "id": 9108, + "stackSize": 1, + "name": "element_1", + "displayName": "Element 1" + }, + { + "id": 9112, + "stackSize": 1, + "name": "music_disc_creator_music_box", + "displayName": "Music Disc Creator Music Box" + }, + { + "id": 9118, + "stackSize": 1, + "name": "element_62", + "displayName": "Element 62" + }, + { + "id": 9136, + "stackSize": 1, + "name": "element_13", + "displayName": "Element 13" + }, + { + "id": 9146, + "stackSize": 1, + "name": "hard_pink_stained_glass", + "displayName": "Hard Pink Stained Glass" + }, + { + "id": 9151, + "stackSize": 1, + "name": "element_2", + "displayName": "Element 2" + }, + { + "id": 9156, + "stackSize": 1, + "name": "bamboo_double_slab", + "displayName": "Bamboo Double Slab" + }, + { + "id": 9157, + "stackSize": 1, + "name": "element_35", + "displayName": "Element 35" + }, + { + "id": 9162, + "stackSize": 1, + "name": "element_80", + "displayName": "Element 80" + }, + { + "id": 9163, + "stackSize": 1, + "name": "powder_snow", + "displayName": "Powder Snow" + }, + { + "id": 9166, + "stackSize": 1, + "name": "element_104", + "displayName": "Element 104" + }, + { + "id": 9179, + "stackSize": 1, + "name": "carrots", + "displayName": "Carrots" + }, + { + "id": 9180, + "stackSize": 1, + "name": "hard_gray_stained_glass_pane", + "displayName": "Hard Gray Stained Glass Pane" + }, + { + "id": 9192, + "stackSize": 1, + "name": "planks", + "displayName": "Planks" + }, + { + "id": 9195, + "stackSize": 1, + "name": "stained_glass_pane", + "displayName": "Stained Glass Pane" + }, + { + "id": 9204, + "stackSize": 1, + "name": "hard_glass", + "displayName": "Hard Glass" + }, + { + "id": 9211, + "stackSize": 1, + "name": "flowing_water", + "displayName": "Flowing Water" + }, + { + "id": 9221, + "stackSize": 1, + "name": "lit_deepslate_redstone_ore", + "displayName": "Lit Deepslate Redstone Ore" + }, + { + "id": 9225, + "stackSize": 1, + "name": "lit_redstone_lamp", + "displayName": "Lit Redstone Lamp" + }, + { + "id": 9228, + "stackSize": 1, + "name": "element_52", + "displayName": "Element 52" + }, + { + "id": 9244, + "stackSize": 1, + "name": "element_86", + "displayName": "Element 86" + }, + { + "id": 9257, + "stackSize": 1, + "name": "end_gateway", + "displayName": "End Gateway" + }, + { + "id": 9259, + "stackSize": 1, + "name": "element_101", + "displayName": "Element 101" + }, + { + "id": 9260, + "stackSize": 1, + "name": "item.beetroot", + "displayName": "Beetroot" + }, + { + "id": 9261, + "stackSize": 1, + "name": "dark_oak_double_slab", + "displayName": "Dark Oak Double Slab" + }, + { + "id": 9265, + "stackSize": 1, + "name": "element_49", + "displayName": "Element 49" + }, + { + "id": 9275, + "stackSize": 1, + "name": "hard_cyan_stained_glass_pane", + "displayName": "Hard Cyan Stained Glass Pane" + }, + { + "id": 9287, + "stackSize": 1, + "name": "element_51", + "displayName": "Element 51" + }, + { + "id": 9293, + "stackSize": 1, + "name": "hard_cyan_stained_glass", + "displayName": "Hard Cyan Stained Glass" + }, + { + "id": 9295, + "stackSize": 1, + "name": "agent_spawn_egg", + "displayName": "Agent Spawn Egg" + }, + { + "id": 9296, + "stackSize": 1, + "name": "carpet", + "displayName": "Carpet" + }, + { + "id": 9302, + "stackSize": 1, + "name": "element_55", + "displayName": "Element 55" + }, + { + "id": 9310, + "stackSize": 1, + "name": "cherry_wall_sign", + "displayName": "Cherry Wall Sign" + }, + { + "id": 9313, + "stackSize": 1, + "name": "element_74", + "displayName": "Element 74" + }, + { + "id": 9328, + "stackSize": 1, + "name": "item.nether_wart", + "displayName": "Nether Wart" + }, + { + "id": 9346, + "stackSize": 1, + "name": "element_97", + "displayName": "Element 97" + }, + { + "id": 9347, + "stackSize": 1, + "name": "hard_magenta_stained_glass_pane", + "displayName": "Hard Magenta Stained Glass Pane" + }, + { + "id": 9351, + "stackSize": 1, + "name": "chemistry_table", + "displayName": "Chemistry Table" + }, + { + "id": 9366, + "stackSize": 1, + "name": "hard_brown_stained_glass_pane", + "displayName": "Hard Brown Stained Glass Pane" + }, + { + "id": 9372, + "stackSize": 1, + "name": "hard_lime_stained_glass_pane", + "displayName": "Hard Lime Stained Glass Pane" + }, + { + "id": 9376, + "stackSize": 1, + "name": "element_23", + "displayName": "Element 23" + }, + { + "id": 9381, + "stackSize": 1, + "name": "coral", + "displayName": "Coral" + }, + { + "id": 9399, + "stackSize": 1, + "name": "reserved6", + "displayName": "Reserved6" + }, + { + "id": 9405, + "stackSize": 1, + "name": "shulker_box", + "displayName": "Shulker Box" + }, + { + "id": 9406, + "stackSize": 1, + "name": "deny", + "displayName": "Deny" + }, + { + "id": 9415, + "stackSize": 1, + "name": "item.cake", + "displayName": "Cake" + }, + { + "id": 9423, + "stackSize": 1, + "name": "sticky_piston_arm_collision", + "displayName": "Sticky Piston Arm Collision" + }, + { + "id": 9426, + "stackSize": 1, + "name": "element_41", + "displayName": "Element 41" + }, + { + "id": 9438, + "stackSize": 1, + "name": "stained_glass", + "displayName": "Stained Glass" + }, + { + "id": 9448, + "stackSize": 1, + "name": "item.flower_pot", + "displayName": "Flower Pot" + }, + { + "id": 9451, + "stackSize": 1, + "name": "hard_white_stained_glass_pane", + "displayName": "Hard White Stained Glass Pane" + }, + { + "id": 9457, + "stackSize": 1, + "name": "camera", + "displayName": "Camera" + }, + { + "id": 9477, + "stackSize": 1, + "name": "hard_red_stained_glass", + "displayName": "Hard Red Stained Glass" + }, + { + "id": 9482, + "stackSize": 1, + "name": "element_44", + "displayName": "Element 44" + }, + { + "id": 9490, + "stackSize": 1, + "name": "element_111", + "displayName": "Element 111" + }, + { + "id": 9502, + "stackSize": 1, + "name": "bleach", + "displayName": "Bleach" + }, + { + "id": 9504, + "stackSize": 1, + "name": "colored_torch_rg", + "displayName": "Colored Torch Rg" + }, + { + "id": 9505, + "stackSize": 1, + "name": "element_21", + "displayName": "Element 21" + }, + { + "id": 9507, + "stackSize": 1, + "name": "hard_red_stained_glass_pane", + "displayName": "Hard Red Stained Glass Pane" + }, + { + "id": 9513, + "stackSize": 1, + "name": "element_0", + "displayName": "Element 0" + }, + { + "id": 9523, + "stackSize": 1, + "name": "item.mangrove_door", + "displayName": "Mangrove Door" + }, + { + "id": 9532, + "stackSize": 1, + "name": "pink_candle_cake", + "displayName": "Pink Candle Cake" + }, + { + "id": 9538, + "stackSize": 1, + "name": "double_plant", + "displayName": "Double Plant" + }, + { + "id": 9542, + "stackSize": 1, + "name": "element_109", + "displayName": "Element 109" + }, + { + "id": 9550, + "stackSize": 1, + "name": "npc_spawn_egg", + "displayName": "Npc Spawn Egg" + }, + { + "id": 9554, + "stackSize": 1, + "name": "spruce_wall_sign", + "displayName": "Spruce Wall Sign" + }, + { + "id": 9559, + "stackSize": 1, + "name": "daylight_detector_inverted", + "displayName": "Daylight Detector Inverted" + }, + { + "id": 9565, + "stackSize": 1, + "name": "rapid_fertilizer", + "displayName": "Rapid Fertilizer" + }, + { + "id": 9571, + "stackSize": 1, + "name": "standing_sign", + "displayName": "Standing Sign" + }, + { + "id": 9580, + "stackSize": 1, + "name": "element_28", + "displayName": "Element 28" + }, + { + "id": 9581, + "stackSize": 1, + "name": "double_cut_copper_slab", + "displayName": "Double Cut Copper Slab" + }, + { + "id": 9583, + "stackSize": 1, + "name": "item.acacia_door", + "displayName": "Acacia Door" + }, + { + "id": 9603, + "stackSize": 1, + "name": "element_4", + "displayName": "Element 4" + }, + { + "id": 9610, + "stackSize": 1, + "name": "orange_candle_cake", + "displayName": "Orange Candle Cake" + }, + { + "id": 9618, + "stackSize": 1, + "name": "double_stone_block_slab3", + "displayName": "Double Stone Block Slab3" + }, + { + "id": 9627, + "stackSize": 1, + "name": "element_47", + "displayName": "Element 47" + }, + { + "id": 9633, + "stackSize": 1, + "name": "element_69", + "displayName": "Element 69" + }, + { + "id": 9635, + "stackSize": 1, + "name": "deepslate_brick_double_slab", + "displayName": "Deepslate Brick Double Slab" + }, + { + "id": 9642, + "stackSize": 1, + "name": "colored_torch_bp", + "displayName": "Colored Torch Bp" + }, + { + "id": 9643, + "stackSize": 1, + "name": "element_102", + "displayName": "Element 102" + }, + { + "id": 9647, + "stackSize": 1, + "name": "element_63", + "displayName": "Element 63" + }, + { + "id": 9665, + "stackSize": 1, + "name": "info_update2", + "displayName": "Info Update2" + }, + { + "id": 9669, + "stackSize": 1, + "name": "element_32", + "displayName": "Element 32" + }, + { + "id": 9676, + "stackSize": 1, + "name": "element_42", + "displayName": "Element 42" + }, + { + "id": 9682, + "stackSize": 1, + "name": "element_73", + "displayName": "Element 73" + }, + { + "id": 9689, + "stackSize": 1, + "name": "element_118", + "displayName": "Element 118" + }, + { + "id": 9692, + "stackSize": 1, + "name": "coral_fan_hang2", + "displayName": "Coral Fan Hang2" + }, + { + "id": 9694, + "stackSize": 1, + "name": "coral_fan_dead", + "displayName": "Coral Fan Dead" + }, + { + "id": 9695, + "stackSize": 1, + "name": "balloon", + "displayName": "Balloon" + }, + { + "id": 9705, + "stackSize": 1, + "name": "field_masoned_banner_pattern", + "displayName": "Field Masoned Banner Pattern" + }, + { + "id": 9706, + "stackSize": 1, + "name": "bordure_indented_banner_pattern", + "displayName": "Bordure Indented Banner Pattern" + }, + { + "id": 9707, + "stackSize": 1, + "name": "purple_candle_cake", + "displayName": "Purple Candle Cake" + }, + { + "id": 9710, + "stackSize": 1, + "name": "potatoes", + "displayName": "Potatoes" + }, + { + "id": 9713, + "stackSize": 1, + "name": "boat", + "displayName": "Boat" + }, + { + "id": 9715, + "stackSize": 1, + "name": "element_78", + "displayName": "Element 78" + }, + { + "id": 9721, + "stackSize": 1, + "name": "blue_candle_cake", + "displayName": "Blue Candle Cake" + }, + { + "id": 9723, + "stackSize": 1, + "name": "element_22", + "displayName": "Element 22" + }, + { + "id": 9725, + "stackSize": 1, + "name": "compound", + "displayName": "Compound" + }, + { + "id": 9727, + "stackSize": 1, + "name": "ice_bomb", + "displayName": "Ice Bomb" + }, + { + "id": 9728, + "stackSize": 1, + "name": "medicine", + "displayName": "Medicine" + }, + { + "id": 9729, + "stackSize": 1, + "name": "hard_light_blue_stained_glass_pane", + "displayName": "Hard Light Blue Stained Glass Pane" + }, + { + "id": 9730, + "stackSize": 1, + "name": "glow_stick", + "displayName": "Glow Stick" + }, + { + "id": 9731, + "stackSize": 1, + "name": "lodestone_compass", + "displayName": "Lodestone Compass" + }, + { + "id": 9732, + "stackSize": 1, + "name": "element_83", + "displayName": "Element 83" + }, + { + "id": 9739, + "stackSize": 1, + "name": "polished_deepslate_double_slab", + "displayName": "Polished Deepslate Double Slab" + }, + { + "id": 9743, + "stackSize": 1, + "name": "black_candle_cake", + "displayName": "Black Candle Cake" + }, + { + "id": 9750, + "stackSize": 1, + "name": "concrete", + "displayName": "Concrete" + }, + { + "id": 9763, + "stackSize": 1, + "name": "element_76", + "displayName": "Element 76" + }, + { + "id": 9767, + "stackSize": 1, + "name": "element_33", + "displayName": "Element 33" + }, + { + "id": 9773, + "stackSize": 1, + "name": "waxed_weathered_double_cut_copper_slab", + "displayName": "Waxed Weathered Double Cut Copper Slab" + }, + { + "id": 9781, + "stackSize": 1, + "name": "jungle_standing_sign", + "displayName": "Jungle Standing Sign" + }, + { + "id": 9783, + "stackSize": 1, + "name": "candle_cake", + "displayName": "Candle Cake" + }, + { + "id": 9792, + "stackSize": 1, + "name": "info_update", + "displayName": "Info Update" + }, + { + "id": 9797, + "stackSize": 1, + "name": "chest_boat", + "displayName": "Chest Boat" + }, + { + "id": 9803, + "stackSize": 1, + "name": "lit_furnace", + "displayName": "Lit Furnace" + }, + { + "id": 9813, + "stackSize": 1, + "name": "element_89", + "displayName": "Element 89" + }, + { + "id": 9817, + "stackSize": 1, + "name": "element_91", + "displayName": "Element 91" + }, + { + "id": 9819, + "stackSize": 1, + "name": "element_82", + "displayName": "Element 82" + }, + { + "id": 9826, + "stackSize": 1, + "name": "double_stone_block_slab", + "displayName": "Double Stone Block Slab" + }, + { + "id": 9829, + "stackSize": 1, + "name": "element_99", + "displayName": "Element 99" + }, + { + "id": 9840, + "stackSize": 1, + "name": "unlit_redstone_torch", + "displayName": "Unlit Redstone Torch" + }, + { + "id": 9850, + "stackSize": 1, + "name": "wool", + "displayName": "Wool" + }, + { + "id": 9855, + "stackSize": 1, + "name": "element_114", + "displayName": "Element 114" + }, + { + "id": 9869, + "stackSize": 1, + "name": "stained_hardened_clay", + "displayName": "Stained Hardened Clay" + }, + { + "id": 9875, + "stackSize": 1, + "name": "element_9", + "displayName": "Element 9" + }, + { + "id": 9882, + "stackSize": 1, + "name": "element_3", + "displayName": "Element 3" + }, + { + "id": 9899, + "stackSize": 1, + "name": "element_18", + "displayName": "Element 18" + }, + { + "id": 9901, + "stackSize": 1, + "name": "element_29", + "displayName": "Element 29" + }, + { + "id": 9902, + "stackSize": 1, + "name": "cherry_double_slab", + "displayName": "Cherry Double Slab" + }, + { + "id": 9905, + "stackSize": 1, + "name": "spruce_standing_sign", + "displayName": "Spruce Standing Sign" + }, + { + "id": 9914, + "stackSize": 1, + "name": "hard_black_stained_glass", + "displayName": "Hard Black Stained Glass" + }, + { + "id": 9923, + "stackSize": 1, + "name": "log", + "displayName": "Log" + }, + { + "id": 9925, + "stackSize": 1, + "name": "hard_orange_stained_glass_pane", + "displayName": "Hard Orange Stained Glass Pane" + }, + { + "id": 9930, + "stackSize": 1, + "name": "fence", + "displayName": "Fence" + }, + { + "id": 9931, + "stackSize": 1, + "name": "element_53", + "displayName": "Element 53" + }, + { + "id": 9943, + "stackSize": 1, + "name": "lit_blast_furnace", + "displayName": "Lit Blast Furnace" + }, + { + "id": 9945, + "stackSize": 1, + "name": "coral_block", + "displayName": "Coral Block" + }, + { + "id": 9946, + "stackSize": 1, + "name": "leaves2", + "displayName": "Leaves2" + }, + { + "id": 9949, + "stackSize": 1, + "name": "double_stone_block_slab2", + "displayName": "Double Stone Block Slab2" + }, + { + "id": 9952, + "stackSize": 1, + "name": "double_stone_block_slab4", + "displayName": "Double Stone Block Slab4" + }, + { + "id": 9953, + "stackSize": 1, + "name": "sweet_berry_bush", + "displayName": "Sweet Berry Bush" + }, + { + "id": 9959, + "stackSize": 1, + "name": "coral_fan", + "displayName": "Coral Fan" + }, + { + "id": 9970, + "stackSize": 1, + "name": "sapling", + "displayName": "Sapling" + }, + { + "id": 9974, + "stackSize": 1, + "name": "leaves", + "displayName": "Leaves" + }, + { + "id": 9975, + "stackSize": 1, + "name": "stone_block_slab", + "displayName": "Stone Block Slab" + }, + { + "id": 9978, + "stackSize": 1, + "name": "soul_fire", + "displayName": "Soul Fire" + }, + { + "id": 9980, + "stackSize": 1, + "name": "hard_light_gray_stained_glass_pane", + "displayName": "Hard Light Gray Stained Glass Pane" + }, + { + "id": 9990, + "stackSize": 1, + "name": "element_116", + "displayName": "Element 116" + }, + { + "id": 9998, + "stackSize": 1, + "name": "red_flower", + "displayName": "Red Flower" + }, + { + "id": 9999, + "stackSize": 1, + "name": "hard_pink_stained_glass_pane", + "displayName": "Hard Pink Stained Glass Pane" + }, + { + "id": 10014, + "stackSize": 1, + "name": "hard_black_stained_glass_pane", + "displayName": "Hard Black Stained Glass Pane" + }, + { + "id": 10025, + "stackSize": 1, + "name": "element_6", + "displayName": "Element 6" + }, + { + "id": 10030, + "stackSize": 1, + "name": "tallgrass", + "displayName": "Tallgrass" + }, + { + "id": 10031, + "stackSize": 1, + "name": "element_103", + "displayName": "Element 103" + }, + { + "id": 10033, + "stackSize": 1, + "name": "log2", + "displayName": "Log2" + }, + { + "id": 10034, + "stackSize": 1, + "name": "element_92", + "displayName": "Element 92" + }, + { + "id": 10043, + "stackSize": 1, + "name": "element_56", + "displayName": "Element 56" + }, + { + "id": 10058, + "stackSize": 1, + "name": "concrete_powder", + "displayName": "Concrete Powder" + }, + { + "id": 10060, + "stackSize": 1, + "name": "element_75", + "displayName": "Element 75" + }, + { + "id": 10064, + "stackSize": 1, + "name": "element_64", + "displayName": "Element 64" + }, + { + "id": 10066, + "stackSize": 1, + "name": "item.hopper", + "displayName": "Hopper" + }, + { + "id": 10067, + "stackSize": 1, + "name": "wood", + "displayName": "Wood" + }, + { + "id": 10068, + "stackSize": 1, + "name": "hard_magenta_stained_glass", + "displayName": "Hard Magenta Stained Glass" + }, + { + "id": 10069, + "stackSize": 1, + "name": "mud_brick_double_slab", + "displayName": "Mud Brick Double Slab" + }, + { + "id": 10071, + "stackSize": 1, + "name": "crimson_double_slab", + "displayName": "Crimson Double Slab" + }, + { + "id": 10072, + "stackSize": 1, + "name": "hard_purple_stained_glass", + "displayName": "Hard Purple Stained Glass" + }, + { + "id": 10081, + "stackSize": 1, + "name": "item.dark_oak_door", + "displayName": "Dark Oak Door" + }, + { + "id": 10086, + "stackSize": 1, + "name": "hard_purple_stained_glass_pane", + "displayName": "Hard Purple Stained Glass Pane" + }, + { + "id": 10089, + "stackSize": 1, + "name": "element_16", + "displayName": "Element 16" + }, + { + "id": 10093, + "stackSize": 1, + "name": "hard_green_stained_glass_pane", + "displayName": "Hard Green Stained Glass Pane" + }, + { + "id": 10106, + "stackSize": 1, + "name": "torchflower_crop", + "displayName": "Torchflower Crop" + }, + { + "id": 10118, + "stackSize": 1, + "name": "music_disc_creator", + "displayName": "Music Disc Creator" + }, + { + "id": 10119, + "stackSize": 1, + "name": "music_disc_precipice", + "displayName": "Music Disc Precipice" + }, + { + "id": 10120, + "stackSize": 1, + "name": "hard_white_stained_glass", + "displayName": "Hard White Stained Glass" + }, + { + "id": 10122, + "stackSize": 1, + "name": "hard_orange_stained_glass", + "displayName": "Hard Orange Stained Glass" + }, + { + "id": 10124, + "stackSize": 1, + "name": "hard_light_blue_stained_glass", + "displayName": "Hard Light Blue Stained Glass" + }, + { + "id": 10125, + "stackSize": 1, + "name": "hard_yellow_stained_glass", + "displayName": "Hard Yellow Stained Glass" + }, + { + "id": 10126, + "stackSize": 1, + "name": "hard_lime_stained_glass", + "displayName": "Hard Lime Stained Glass" + }, + { + "id": 10127, + "stackSize": 1, + "name": "hard_gray_stained_glass", + "displayName": "Hard Gray Stained Glass" + }, + { + "id": 10128, + "stackSize": 1, + "name": "hard_light_gray_stained_glass", + "displayName": "Hard Light Gray Stained Glass" + }, + { + "id": 10130, + "stackSize": 1, + "name": "hard_green_stained_glass", + "displayName": "Hard Green Stained Glass" + }, + { + "id": 10131, + "stackSize": 1, + "name": "hard_stained_glass", + "displayName": "Hard Stained Glass" + }, + { + "id": 10132, + "stackSize": 1, + "name": "element_84", + "displayName": "Element 84" + }, + { + "id": 10133, + "stackSize": 1, + "name": "hard_yellow_stained_glass_pane", + "displayName": "Hard Yellow Stained Glass Pane" + }, + { + "id": 10134, + "stackSize": 1, + "name": "hard_blue_stained_glass_pane", + "displayName": "Hard Blue Stained Glass Pane" + }, + { + "id": 10135, + "stackSize": 1, + "name": "hard_stained_glass_pane", + "displayName": "Hard Stained Glass Pane" + }, + { + "id": 10140, + "stackSize": 1, + "name": "fire", + "displayName": "Fire" + }, + { + "id": 10146, + "stackSize": 1, + "name": "element_5", + "displayName": "Element 5" + }, + { + "id": 10147, + "stackSize": 1, + "name": "element_8", + "displayName": "Element 8" + }, + { + "id": 10148, + "stackSize": 1, + "name": "element_10", + "displayName": "Element 10" + }, + { + "id": 10149, + "stackSize": 1, + "name": "element_11", + "displayName": "Element 11" + }, + { + "id": 10150, + "stackSize": 1, + "name": "element_12", + "displayName": "Element 12" + }, + { + "id": 10151, + "stackSize": 1, + "name": "element_14", + "displayName": "Element 14" + }, + { + "id": 10152, + "stackSize": 1, + "name": "client_request_placeholder_block", + "displayName": "Client Request Placeholder Block" + }, + { + "id": 10153, + "stackSize": 1, + "name": "element_17", + "displayName": "Element 17" + }, + { + "id": 10154, + "stackSize": 1, + "name": "element_19", + "displayName": "Element 19" + }, + { + "id": 10156, + "stackSize": 1, + "name": "element_20", + "displayName": "Element 20" + }, + { + "id": 10157, + "stackSize": 1, + "name": "element_24", + "displayName": "Element 24" + }, + { + "id": 10158, + "stackSize": 1, + "name": "element_26", + "displayName": "Element 26" + }, + { + "id": 10159, + "stackSize": 1, + "name": "element_30", + "displayName": "Element 30" + }, + { + "id": 10160, + "stackSize": 1, + "name": "element_31", + "displayName": "Element 31" + }, + { + "id": 10161, + "stackSize": 1, + "name": "element_34", + "displayName": "Element 34" + }, + { + "id": 10162, + "stackSize": 1, + "name": "element_36", + "displayName": "Element 36" + }, + { + "id": 10163, + "stackSize": 1, + "name": "element_37", + "displayName": "Element 37" + }, + { + "id": 10164, + "stackSize": 1, + "name": "element_38", + "displayName": "Element 38" + }, + { + "id": 10165, + "stackSize": 1, + "name": "element_39", + "displayName": "Element 39" + }, + { + "id": 10166, + "stackSize": 1, + "name": "element_40", + "displayName": "Element 40" + }, + { + "id": 10167, + "stackSize": 1, + "name": "element_45", + "displayName": "Element 45" + }, + { + "id": 10168, + "stackSize": 1, + "name": "element_46", + "displayName": "Element 46" + }, + { + "id": 10169, + "stackSize": 1, + "name": "element_48", + "displayName": "Element 48" + }, + { + "id": 10170, + "stackSize": 1, + "name": "element_54", + "displayName": "Element 54" + }, + { + "id": 10172, + "stackSize": 1, + "name": "element_57", + "displayName": "Element 57" + }, + { + "id": 10173, + "stackSize": 1, + "name": "element_58", + "displayName": "Element 58" + }, + { + "id": 10174, + "stackSize": 1, + "name": "element_59", + "displayName": "Element 59" + }, + { + "id": 10175, + "stackSize": 1, + "name": "element_60", + "displayName": "Element 60" + }, + { + "id": 10176, + "stackSize": 1, + "name": "element_65", + "displayName": "Element 65" + }, + { + "id": 10177, + "stackSize": 1, + "name": "element_66", + "displayName": "Element 66" + }, + { + "id": 10178, + "stackSize": 1, + "name": "element_67", + "displayName": "Element 67" + }, + { + "id": 10179, + "stackSize": 1, + "name": "element_70", + "displayName": "Element 70" + }, + { + "id": 10180, + "stackSize": 1, + "name": "element_71", + "displayName": "Element 71" + }, + { + "id": 10181, + "stackSize": 1, + "name": "element_72", + "displayName": "Element 72" + }, + { + "id": 10182, + "stackSize": 1, + "name": "element_77", + "displayName": "Element 77" + }, + { + "id": 10185, + "stackSize": 1, + "name": "element_79", + "displayName": "Element 79" + }, + { + "id": 10186, + "stackSize": 1, + "name": "element_81", + "displayName": "Element 81" + }, + { + "id": 10188, + "stackSize": 1, + "name": "element_85", + "displayName": "Element 85" + }, + { + "id": 10189, + "stackSize": 1, + "name": "element_87", + "displayName": "Element 87" + }, + { + "id": 10190, + "stackSize": 1, + "name": "element_88", + "displayName": "Element 88" + }, + { + "id": 10191, + "stackSize": 1, + "name": "element_90", + "displayName": "Element 90" + }, + { + "id": 10192, + "stackSize": 1, + "name": "element_93", + "displayName": "Element 93" + }, + { + "id": 10193, + "stackSize": 1, + "name": "element_95", + "displayName": "Element 95" + }, + { + "id": 10195, + "stackSize": 1, + "name": "element_96", + "displayName": "Element 96" + }, + { + "id": 10196, + "stackSize": 1, + "name": "element_98", + "displayName": "Element 98" + }, + { + "id": 10198, + "stackSize": 1, + "name": "element_100", + "displayName": "Element 100" + }, + { + "id": 10199, + "stackSize": 1, + "name": "element_105", + "displayName": "Element 105" + }, + { + "id": 10200, + "stackSize": 1, + "name": "element_106", + "displayName": "Element 106" + }, + { + "id": 10201, + "stackSize": 1, + "name": "element_107", + "displayName": "Element 107" + }, + { + "id": 10202, + "stackSize": 1, + "name": "element_108", + "displayName": "Element 108" + }, + { + "id": 10203, + "stackSize": 1, + "name": "element_110", + "displayName": "Element 110" + }, + { + "id": 10204, + "stackSize": 1, + "name": "element_112", + "displayName": "Element 112" + }, + { + "id": 10206, + "stackSize": 1, + "name": "element_113", + "displayName": "Element 113" + }, + { + "id": 10207, + "stackSize": 1, + "name": "element_115", + "displayName": "Element 115" + }, + { + "id": 10208, + "stackSize": 1, + "name": "element_117", + "displayName": "Element 117" + }, + { + "id": 10210, + "stackSize": 1, + "name": "white_candle_cake", + "displayName": "White Candle Cake" + }, + { + "id": 10213, + "stackSize": 1, + "name": "dye", + "displayName": "Dye" + }, + { + "id": 10214, + "stackSize": 1, + "name": "banner_pattern", + "displayName": "Banner Pattern" + }, + { + "id": 10215, + "stackSize": 1, + "name": "spawn_egg", + "displayName": "Spawn Egg" + }, + { + "id": 10217, + "stackSize": 1, + "name": "birch_standing_sign", + "displayName": "Birch Standing Sign" + }, + { + "id": 10220, + "stackSize": 1, + "name": "item.warped_door", + "displayName": "Warped Door" + }, + { + "id": 10222, + "stackSize": 1, + "name": "piston_arm_collision", + "displayName": "Piston Arm Collision" + }, + { + "id": 10227, + "stackSize": 1, + "name": "blackstone_double_slab", + "displayName": "Blackstone Double Slab" + }, + { + "id": 10229, + "stackSize": 1, + "name": "gray_candle_cake", + "displayName": "Gray Candle Cake" + }, + { + "id": 10231, + "stackSize": 1, + "name": "crimson_wall_sign", + "displayName": "Crimson Wall Sign" + }, + { + "id": 10233, + "stackSize": 1, + "name": "item.glow_frame", + "displayName": "Glow Frame" + }, + { + "id": 10242, + "stackSize": 1, + "name": "warped_standing_sign", + "displayName": "Warped Standing Sign" + }, + { + "id": 10244, + "stackSize": 1, + "name": "pitcher_crop", + "displayName": "Pitcher Crop" + }, + { + "id": 10250, + "stackSize": 1, + "name": "light_blue_candle_cake", + "displayName": "Light Blue Candle Cake" + }, + { + "id": 10259, + "stackSize": 1, + "name": "polished_tuff_double_slab", + "displayName": "Polished Tuff Double Slab" + }, + { + "id": 10262, + "stackSize": 1, + "name": "deepslate_tile_double_slab", + "displayName": "Deepslate Tile Double Slab" + }, + { + "id": 10265, + "stackSize": 1, + "name": "powered_comparator", + "displayName": "Powered Comparator" + }, + { + "id": 10266, + "stackSize": 1, + "name": "warped_wall_sign", + "displayName": "Warped Wall Sign" + }, + { + "id": 10267, + "stackSize": 1, + "name": "mangrove_double_slab", + "displayName": "Mangrove Double Slab" + }, + { + "id": 10269, + "stackSize": 1, + "name": "oxidized_double_cut_copper_slab", + "displayName": "Oxidized Double Cut Copper Slab" + }, + { + "id": 10271, + "stackSize": 1, + "name": "exposed_double_cut_copper_slab", + "displayName": "Exposed Double Cut Copper Slab" + }, + { + "id": 10276, + "stackSize": 1, + "name": "polished_blackstone_double_slab", + "displayName": "Polished Blackstone Double Slab" + }, + { + "id": 10277, + "stackSize": 1, + "name": "hard_glass_pane", + "displayName": "Hard Glass Pane" + }, + { + "id": 10279, + "stackSize": 1, + "name": "polished_blackstone_brick_double_slab", + "displayName": "Polished Blackstone Brick Double Slab" + }, + { + "id": 10282, + "stackSize": 1, + "name": "cyan_candle_cake", + "displayName": "Cyan Candle Cake" + }, + { + "id": 10291, + "stackSize": 1, + "name": "stonecutter", + "displayName": "Stonecutter" + }, + { + "id": 10295, + "stackSize": 1, + "name": "invisible_bedrock", + "displayName": "Invisible Bedrock" + }, + { + "id": 10303, + "stackSize": 1, + "name": "underwater_torch", + "displayName": "Underwater Torch" + }, + { + "id": 10304, + "stackSize": 1, + "name": "wall_banner", + "displayName": "Wall Banner" + }, + { + "id": 10305, + "stackSize": 1, + "name": "spruce_double_slab", + "displayName": "Spruce Double Slab" + }, + { + "id": 10309, + "stackSize": 1, + "name": "glowingobsidian", + "displayName": "Glowingobsidian" + }, + { + "id": 10313, + "stackSize": 1, + "name": "moving_block", + "displayName": "Moving Block" + }, + { + "id": 10317, + "stackSize": 1, + "name": "cave_vines_body_with_berries", + "displayName": "Cave Vines Body With Berries" + }, + { + "id": 10321, + "stackSize": 1, + "name": "green_candle_cake", + "displayName": "Green Candle Cake" + }, + { + "id": 10324, + "stackSize": 1, + "name": "oak_double_slab", + "displayName": "Oak Double Slab" + }, + { + "id": 10325, + "stackSize": 1, + "name": "brown_candle_cake", + "displayName": "Brown Candle Cake" + }, + { + "id": 10327, + "stackSize": 1, + "name": "acacia_wall_sign", + "displayName": "Acacia Wall Sign" + }, + { + "id": 10334, + "stackSize": 1, + "name": "item.wooden_door", + "displayName": "Wooden Door" + }, + { + "id": 10339, + "stackSize": 1, + "name": "redstone_wire", + "displayName": "Redstone Wire" + }, + { + "id": 10341, + "stackSize": 1, + "name": "lava", + "displayName": "Lava" + }, + { + "id": 10342, + "stackSize": 1, + "name": "item.crimson_door", + "displayName": "Crimson Door" + }, + { + "id": 10347, + "stackSize": 1, + "name": "coral_fan_hang3", + "displayName": "Coral Fan Hang3" + }, + { + "id": 10351, + "stackSize": 1, + "name": "bamboo_mosaic_double_slab", + "displayName": "Bamboo Mosaic Double Slab" + }, + { + "id": 10355, + "stackSize": 1, + "name": "mangrove_standing_sign", + "displayName": "Mangrove Standing Sign" + }, + { + "id": 10357, + "stackSize": 1, + "name": "lit_redstone_ore", + "displayName": "Lit Redstone Ore" + }, + { + "id": 10361, + "stackSize": 1, + "name": "item.frame", + "displayName": "Frame" + }, + { + "id": 10372, + "stackSize": 1, + "name": "warped_double_slab", + "displayName": "Warped Double Slab" + }, + { + "id": 10373, + "stackSize": 1, + "name": "jungle_wall_sign", + "displayName": "Jungle Wall Sign" + }, + { + "id": 10381, + "stackSize": 1, + "name": "coral_fan_hang", + "displayName": "Coral Fan Hang" + }, + { + "id": 10383, + "stackSize": 1, + "name": "powered_repeater", + "displayName": "Powered Repeater" + }, + { + "id": 10389, + "stackSize": 1, + "name": "unknown", + "displayName": "Unknown" + }, + { + "id": 10390, + "stackSize": 1, + "name": "yellow_candle_cake", + "displayName": "Yellow Candle Cake" + }, + { + "id": 10400, + "stackSize": 1, + "name": "item.wheat", + "displayName": "Wheat" + }, + { + "id": 10401, + "stackSize": 1, + "name": "item.spruce_door", + "displayName": "Spruce Door" + }, + { + "id": 10403, + "stackSize": 1, + "name": "frosted_ice", + "displayName": "Frosted Ice" + }, + { + "id": 10408, + "stackSize": 1, + "name": "cave_vines", + "displayName": "Cave Vines" + }, + { + "id": 10409, + "stackSize": 1, + "name": "melon_stem", + "displayName": "Melon Stem" + }, + { + "id": 10414, + "stackSize": 1, + "name": "wall_sign", + "displayName": "Wall Sign" + }, + { + "id": 10415, + "stackSize": 1, + "name": "border_block", + "displayName": "Border Block" + }, + { + "id": 10418, + "stackSize": 1, + "name": "birch_double_slab", + "displayName": "Birch Double Slab" + }, + { + "id": 10422, + "stackSize": 1, + "name": "mangrove_wall_sign", + "displayName": "Mangrove Wall Sign" + }, + { + "id": 10423, + "stackSize": 1, + "name": "item.skull", + "displayName": "Skull" + }, + { + "id": 10424, + "stackSize": 1, + "name": "light_gray_candle_cake", + "displayName": "Light Gray Candle Cake" + }, + { + "id": 10426, + "stackSize": 1, + "name": "darkoak_wall_sign", + "displayName": "Darkoak Wall Sign" + }, + { + "id": 10430, + "stackSize": 1, + "name": "flowing_lava", + "displayName": "Flowing Lava" + }, + { + "id": 10434, + "stackSize": 1, + "name": "waxed_double_cut_copper_slab", + "displayName": "Waxed Double Cut Copper Slab" + }, + { + "id": 10435, + "stackSize": 1, + "name": "item.kelp", + "displayName": "Kelp" + }, + { + "id": 10437, + "stackSize": 1, + "name": "water", + "displayName": "Water" + }, + { + "id": 10438, + "stackSize": 1, + "name": "chemical_heat", + "displayName": "Chemical Heat" + }, + { + "id": 10440, + "stackSize": 1, + "name": "unpowered_repeater", + "displayName": "Unpowered Repeater" + }, + { + "id": 10444, + "stackSize": 1, + "name": "acacia_double_slab", + "displayName": "Acacia Double Slab" + }, + { + "id": 10447, + "stackSize": 1, + "name": "bubble_column", + "displayName": "Bubble Column" + }, + { + "id": 10451, + "stackSize": 1, + "name": "cobbled_deepslate_double_slab", + "displayName": "Cobbled Deepslate Double Slab" + }, + { + "id": 10453, + "stackSize": 1, + "name": "cherry_standing_sign", + "displayName": "Cherry Standing Sign" + }, + { + "id": 10454, + "stackSize": 1, + "name": "item.chain", + "displayName": "Chain" + }, + { + "id": 10460, + "stackSize": 1, + "name": "tuff_brick_double_slab", + "displayName": "Tuff Brick Double Slab" + }, + { + "id": 10465, + "stackSize": 1, + "name": "item.reeds", + "displayName": "Reeds" + }, + { + "id": 10467, + "stackSize": 1, + "name": "item.camera", + "displayName": "Camera" + }, + { + "id": 10470, + "stackSize": 1, + "name": "item.jungle_door", + "displayName": "Jungle Door" + }, + { + "id": 10476, + "stackSize": 1, + "name": "acacia_standing_sign", + "displayName": "Acacia Standing Sign" + }, + { + "id": 10482, + "stackSize": 1, + "name": "pumpkin_stem", + "displayName": "Pumpkin Stem" + }, + { + "id": 10485, + "stackSize": 1, + "name": "unpowered_comparator", + "displayName": "Unpowered Comparator" + }, + { + "id": 10487, + "stackSize": 1, + "name": "item.nether_sprouts", + "displayName": "Nether Sprouts" + }, + { + "id": 10491, + "stackSize": 1, + "name": "cocoa", + "displayName": "Cocoa" + }, + { + "id": 10498, + "stackSize": 1, + "name": "item.bed", + "displayName": "Bed" + }, + { + "id": 10502, + "stackSize": 1, + "name": "waxed_exposed_double_cut_copper_slab", + "displayName": "Waxed Exposed Double Cut Copper Slab" + }, + { + "id": 10505, + "stackSize": 1, + "name": "birch_wall_sign", + "displayName": "Birch Wall Sign" + }, + { + "id": 10506, + "stackSize": 1, + "name": "bamboo_wall_sign", + "displayName": "Bamboo Wall Sign" + }, + { + "id": 10507, + "stackSize": 1, + "name": "bamboo_sapling", + "displayName": "Bamboo Sapling" + }, + { + "id": 10508, + "stackSize": 1, + "name": "standing_banner", + "displayName": "Standing Banner" + }, + { + "id": 10511, + "stackSize": 1, + "name": "jungle_double_slab", + "displayName": "Jungle Double Slab" + }, + { + "id": 10518, + "stackSize": 1, + "name": "weathered_double_cut_copper_slab", + "displayName": "Weathered Double Cut Copper Slab" + }, + { + "id": 10521, + "stackSize": 1, + "name": "allow", + "displayName": "Allow" + }, + { + "id": 10522, + "stackSize": 1, + "name": "item.birch_door", + "displayName": "Birch Door" + }, + { + "id": 10524, + "stackSize": 1, + "name": "bamboo_standing_sign", + "displayName": "Bamboo Standing Sign" + }, + { + "id": 10534, + "stackSize": 1, + "name": "crimson_standing_sign", + "displayName": "Crimson Standing Sign" + }, + { + "id": 10535, + "stackSize": 1, + "name": "darkoak_standing_sign", + "displayName": "Darkoak Standing Sign" + }, + { + "id": 10539, + "stackSize": 1, + "name": "netherreactor", + "displayName": "Netherreactor" + }, + { + "id": 10540, + "stackSize": 1, + "name": "trip_wire", + "displayName": "Trip Wire" + }, + { + "id": 10541, + "stackSize": 1, + "name": "item.cauldron", + "displayName": "Cauldron" + }, + { + "id": 10542, + "stackSize": 1, + "name": "cave_vines_head_with_berries", + "displayName": "Cave Vines Head With Berries" + }, + { + "id": 10544, + "stackSize": 1, + "name": "item.brewing_stand", + "displayName": "Brewing Stand" + }, + { + "id": 10546, + "stackSize": 1, + "name": "end_portal", + "displayName": "End Portal" + }, + { + "id": 10548, + "stackSize": 1, + "name": "lit_smoker", + "displayName": "Lit Smoker" + }, + { + "id": 10550, + "stackSize": 1, + "name": "red_candle_cake", + "displayName": "Red Candle Cake" + }, + { + "id": 10552, + "stackSize": 1, + "name": "waxed_oxidized_double_cut_copper_slab", + "displayName": "Waxed Oxidized Double Cut Copper Slab" + }, + { + "id": 10555, + "stackSize": 1, + "name": "tuff_double_slab", + "displayName": "Tuff Double Slab" + }, + { + "id": 10562, + "stackSize": 1, + "name": "item.soul_campfire", + "displayName": "Soul Campfire" + }, + { + "id": 10564, + "stackSize": 1, + "name": "lime_candle_cake", + "displayName": "Lime Candle Cake" + } +] \ No newline at end of file diff --git a/data/bedrock/1.21.0/protocol.json b/data/bedrock/1.21.0/protocol.json index 75a0a7786..c6c831255 100644 --- a/data/bedrock/1.21.0/protocol.json +++ b/data/bedrock/1.21.0/protocol.json @@ -1,5 +1,48 @@ { "types": { + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "SignedByteArray": [ + "buffer", + { + "countType": "zigzag32" + } + ], + "LittleString": [ + "pstring", + { + "countType": "li32" + } + ], + "LatinString": [ + "pstring", + { + "countType": "varint", + "encoding": "latin1" + } + ], + "ShortArray": [ + "buffer", + { + "countType": "li16" + } + ], + "ShortString": [ + "pstring", + { + "countType": "li16" + } + ], "varint64": "native", "zigzag32": "native", "zigzag64": "native", @@ -867,6 +910,143 @@ ] } ], + "MetadataFlags1": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "onfire", + "sneaking", + "riding", + "sprinting", + "action", + "invisible", + "tempted", + "inlove", + "saddled", + "powered", + "ignited", + "baby", + "converting", + "critical", + "can_show_nametag", + "always_show_nametag", + "no_ai", + "silent", + "wallclimbing", + "can_climb", + "swimmer", + "can_fly", + "walker", + "resting", + "sitting", + "angry", + "interested", + "charged", + "tamed", + "orphaned", + "leashed", + "sheared", + "gliding", + "elder", + "moving", + "breathing", + "chested", + "stackable", + "showbase", + "rearing", + "vibrating", + "idling", + "evoker_spell", + "charge_attack", + "wasd_controlled", + "can_power_jump", + "can_dash", + "linger", + "has_collision", + "affected_by_gravity", + "fire_immune", + "dancing", + "enchanted", + "show_trident_rope", + "container_private", + "transforming", + "spin_attack", + "swimming", + "bribed", + "pregnant", + "laying_egg", + "rider_can_pick", + "transition_sitting", + "eating", + "laying_down" + ] + } + ], + "MetadataFlags2": [ + "bitflags", + { + "type": "zigzag64", + "big": true, + "flags": [ + "sneezing", + "trusting", + "rolling", + "scared", + "in_scaffolding", + "over_scaffolding", + "fall_through_scaffolding", + "blocking", + "transition_blocking", + "blocked_using_shield", + "blocked_using_damaged_shield", + "sleeping", + "wants_to_wake", + "trade_interest", + "door_breaker", + "breaking_obstruction", + "door_opener", + "illager_captain", + "stunned", + "roaring", + "delayed_attacking", + "avoiding_mobs", + "avoiding_block", + "facing_target_to_range_attack", + "hidden_when_invisible", + "is_in_ui", + "stalking", + "emoting", + "celebrating", + "admiring", + "celebrating_special", + "unknown95", + "ram_attack", + "playing_dead", + "in_ascendable_block", + "over_descendable_block", + "croaking", + "eat_mob", + "jump_goal_jump", + "emerging", + "sniffing", + "digging", + "sonic_boom", + "has_dash_cooldown", + "push_towards_closest_space", + "scenting", + "rising", + "feeling_happy", + "searching", + "crawling", + "timer_flag_1", + "timer_flag_2", + "timer_flag_3", + "body_rotation_blocked" + ] + } + ], "Link": [ "container", [ @@ -4153,6 +4333,34 @@ } } ], + "AbilitySet": [ + "bitflags", + { + "type": "lu32", + "flags": [ + "build", + "mine", + "doors_and_switches", + "open_containers", + "attack_players", + "attack_mobs", + "operator_commands", + "teleport", + "invulnerable", + "flying", + "may_fly", + "instant_build", + "lightning", + "fly_speed", + "walk_speed", + "muted", + "world_builder", + "no_clip", + "privileged_builder", + "count" + ] + } + ], "AbilityLayers": [ "container", [ @@ -5890,6 +6098,19 @@ } ] ], + "UpdateBlockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "neighbors": 1, + "network": 2, + "no_graphic": 4, + "unused": 8, + "priority": 16 + } + } + ], "packet_add_painting": [ "container", [ @@ -6912,6 +7133,39 @@ } ] ], + "AdventureFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "world_immutable": 1, + "no_pvp": 2, + "auto_jump": 32, + "allow_flight": 64, + "no_clip": 128, + "world_builder": 256, + "flying": 512, + "muted": 1024 + } + } + ], + "ActionPermissions": [ + "bitflags", + { + "type": "varint", + "flags": { + "mine": 65537, + "doors_and_switches": 65538, + "open_containers": 65540, + "attack_players": 65544, + "attack_mobs": 65552, + "operator": 65568, + "teleport": 65664, + "build": 65792, + "default": 66048 + } + } + ], "packet_block_entity_data": [ "container", [ @@ -7161,8 +7415,20 @@ } ] ], - "packet_clientbound_map_item_data": [ - "container", + "UpdateMapFlags": [ + "bitflags", + { + "type": "varint", + "flags": [ + "void", + "texture", + "decoration", + "initialisation" + ] + } + ], + "packet_clientbound_map_item_data": [ + "container", [ { "name": "map_id", @@ -7862,6 +8128,36 @@ } ] ], + "CommandFlags": [ + "bitfield", + [ + { + "name": "unused", + "size": 1, + "signed": false + }, + { + "name": "collapse_enum", + "size": 1, + "signed": false + }, + { + "name": "has_semantic_constraint", + "size": 1, + "signed": false + }, + { + "name": "as_chained_command", + "size": 1, + "signed": false + }, + { + "name": "unknown2", + "size": 4, + "signed": false + } + ] + ], "packet_command_request": [ "container", [ @@ -9036,6 +9332,23 @@ } ] ], + "DeltaMoveFlags": [ + "bitflags", + { + "type": "lu16", + "flags": { + "has_x": 1, + "has_y": 2, + "has_z": 4, + "has_rot_x": 8, + "has_rot_y": 16, + "has_rot_z": 32, + "on_ground": 64, + "teleport": 128, + "force_move": 256 + } + } + ], "packet_set_scoreboard_identity": [ "container", [ @@ -10051,6 +10364,64 @@ } ] ], + "InputFlag": [ + "bitflags", + { + "type": "varint64", + "big": true, + "flags": [ + "ascend", + "descend", + "north_jump", + "jump_down", + "sprint_down", + "change_height", + "jumping", + "auto_jumping_in_water", + "sneaking", + "sneak_down", + "up", + "down", + "left", + "right", + "up_left", + "up_right", + "want_up", + "want_down", + "want_down_slow", + "want_up_slow", + "sprinting", + "ascend_block", + "descend_block", + "sneak_toggle_down", + "persist_sneak", + "start_sprinting", + "stop_sprinting", + "start_sneaking", + "stop_sneaking", + "start_swimming", + "stop_swimming", + "start_jumping", + "start_gliding", + "stop_gliding", + "item_interact", + "block_action", + "item_stack_request", + "handled_teleport", + "emoting", + "missed_swing", + "start_crawling", + "stop_crawling", + "start_flying", + "stop_flying", + "received_server_data", + "client_predicted_vehicle", + "paddling_left", + "paddling_right", + "block_breaking_delay_enabled" + ] + } + ], "packet_creative_content": [ "container", [ @@ -10178,6 +10549,18 @@ } ] ], + "ArmorDamageType": [ + "bitflags", + { + "type": "u8", + "flags": { + "head": 1, + "chest": 2, + "legs": 4, + "feet": 8 + } + } + ], "packet_update_player_game_type": [ "container", [ @@ -11250,6 +11633,22 @@ } ] ], + "RequestPermissions": [ + "bitflags", + { + "type": "lu16", + "flags": { + "build": 1, + "mine": 2, + "doors_and_switches": 4, + "open_containers": 8, + "attack_players": 16, + "attack_mobs": 32, + "operator": 64, + "teleport": 128 + } + } + ], "packet_toast_request": [ "container", [ @@ -11454,6 +11853,20 @@ } ] ], + "InputLockFlags": [ + "bitflags", + { + "type": "varint", + "flags": { + "move": 2, + "jump": 4, + "sneak": 8, + "mount": 16, + "dismount": 32, + "rotation": 64 + } + } + ], "packet_update_client_input_locks": [ "container", [ @@ -11936,419 +12349,6 @@ "type": "vec3f" } ] - ], - "string": [ - "pstring", - { - "countType": "varint" - } - ], - "ByteArray": [ - "buffer", - { - "countType": "varint" - } - ], - "SignedByteArray": [ - "buffer", - { - "countType": "zigzag32" - } - ], - "LittleString": [ - "pstring", - { - "countType": "li32" - } - ], - "LatinString": [ - "pstring", - { - "countType": "varint", - "encoding": "latin1" - } - ], - "ShortArray": [ - "buffer", - { - "countType": "li16" - } - ], - "ShortString": [ - "pstring", - { - "countType": "li16" - } - ], - "MetadataFlags1": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "onfire", - "sneaking", - "riding", - "sprinting", - "action", - "invisible", - "tempted", - "inlove", - "saddled", - "powered", - "ignited", - "baby", - "converting", - "critical", - "can_show_nametag", - "always_show_nametag", - "no_ai", - "silent", - "wallclimbing", - "can_climb", - "swimmer", - "can_fly", - "walker", - "resting", - "sitting", - "angry", - "interested", - "charged", - "tamed", - "orphaned", - "leashed", - "sheared", - "gliding", - "elder", - "moving", - "breathing", - "chested", - "stackable", - "showbase", - "rearing", - "vibrating", - "idling", - "evoker_spell", - "charge_attack", - "wasd_controlled", - "can_power_jump", - "can_dash", - "linger", - "has_collision", - "affected_by_gravity", - "fire_immune", - "dancing", - "enchanted", - "show_trident_rope", - "container_private", - "transforming", - "spin_attack", - "swimming", - "bribed", - "pregnant", - "laying_egg", - "rider_can_pick", - "transition_sitting", - "eating", - "laying_down" - ] - } - ], - "MetadataFlags2": [ - "bitflags", - { - "type": "zigzag64", - "big": true, - "flags": [ - "sneezing", - "trusting", - "rolling", - "scared", - "in_scaffolding", - "over_scaffolding", - "fall_through_scaffolding", - "blocking", - "transition_blocking", - "blocked_using_shield", - "blocked_using_damaged_shield", - "sleeping", - "wants_to_wake", - "trade_interest", - "door_breaker", - "breaking_obstruction", - "door_opener", - "illager_captain", - "stunned", - "roaring", - "delayed_attacking", - "avoiding_mobs", - "avoiding_block", - "facing_target_to_range_attack", - "hidden_when_invisible", - "is_in_ui", - "stalking", - "emoting", - "celebrating", - "admiring", - "celebrating_special", - "unknown95", - "ram_attack", - "playing_dead", - "in_ascendable_block", - "over_descendable_block", - "croaking", - "eat_mob", - "jump_goal_jump", - "emerging", - "sniffing", - "digging", - "sonic_boom", - "has_dash_cooldown", - "push_towards_closest_space", - "scenting", - "rising", - "feeling_happy", - "searching", - "crawling", - "timer_flag_1", - "timer_flag_2", - "timer_flag_3", - "body_rotation_blocked" - ] - } - ], - "AbilitySet": [ - "bitflags", - { - "type": "lu32", - "flags": [ - "build", - "mine", - "doors_and_switches", - "open_containers", - "attack_players", - "attack_mobs", - "operator_commands", - "teleport", - "invulnerable", - "flying", - "may_fly", - "instant_build", - "lightning", - "fly_speed", - "walk_speed", - "muted", - "world_builder", - "no_clip", - "privileged_builder", - "count" - ] - } - ], - "UpdateBlockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "neighbors": 1, - "network": 2, - "no_graphic": 4, - "unused": 8, - "priority": 16 - } - } - ], - "AdventureFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "world_immutable": 1, - "no_pvp": 2, - "auto_jump": 32, - "allow_flight": 64, - "no_clip": 128, - "world_builder": 256, - "flying": 512, - "muted": 1024 - } - } - ], - "ActionPermissions": [ - "bitflags", - { - "type": "varint", - "flags": { - "mine": 65537, - "doors_and_switches": 65538, - "open_containers": 65540, - "attack_players": 65544, - "attack_mobs": 65552, - "operator": 65568, - "teleport": 65664, - "build": 65792, - "default": 66048 - } - } - ], - "UpdateMapFlags": [ - "bitflags", - { - "type": "varint", - "flags": [ - "void", - "texture", - "decoration", - "initialisation" - ] - } - ], - "CommandFlags": [ - "bitfield", - [ - { - "name": "unused", - "size": 1, - "signed": false - }, - { - "name": "collapse_enum", - "size": 1, - "signed": false - }, - { - "name": "has_semantic_constraint", - "size": 1, - "signed": false - }, - { - "name": "as_chained_command", - "size": 1, - "signed": false - }, - { - "name": "unknown2", - "size": 4, - "signed": false - } - ] - ], - "DeltaMoveFlags": [ - "bitflags", - { - "type": "lu16", - "flags": { - "has_x": 1, - "has_y": 2, - "has_z": 4, - "has_rot_x": 8, - "has_rot_y": 16, - "has_rot_z": 32, - "on_ground": 64, - "teleport": 128, - "force_move": 256 - } - } - ], - "InputFlag": [ - "bitflags", - { - "type": "varint64", - "big": true, - "flags": [ - "ascend", - "descend", - "north_jump", - "jump_down", - "sprint_down", - "change_height", - "jumping", - "auto_jumping_in_water", - "sneaking", - "sneak_down", - "up", - "down", - "left", - "right", - "up_left", - "up_right", - "want_up", - "want_down", - "want_down_slow", - "want_up_slow", - "sprinting", - "ascend_block", - "descend_block", - "sneak_toggle_down", - "persist_sneak", - "start_sprinting", - "stop_sprinting", - "start_sneaking", - "stop_sneaking", - "start_swimming", - "stop_swimming", - "start_jumping", - "start_gliding", - "stop_gliding", - "item_interact", - "block_action", - "item_stack_request", - "handled_teleport", - "emoting", - "missed_swing", - "start_crawling", - "stop_crawling", - "start_flying", - "stop_flying", - "received_server_data", - "client_predicted_vehicle", - "paddling_left", - "paddling_right", - "block_breaking_delay_enabled" - ] - } - ], - "ArmorDamageType": [ - "bitflags", - { - "type": "u8", - "flags": { - "head": 1, - "chest": 2, - "legs": 4, - "feet": 8 - } - } - ], - "RequestPermissions": [ - "bitflags", - { - "type": "lu16", - "flags": { - "build": 1, - "mine": 2, - "doors_and_switches": 4, - "open_containers": 8, - "attack_players": 16, - "attack_mobs": 32, - "operator": 64, - "teleport": 128 - } - } - ], - "InputLockFlags": [ - "bitflags", - { - "type": "varint", - "flags": { - "move": 2, - "jump": 4, - "sneak": 8, - "mount": 16, - "dismount": 32, - "rotation": 64 - } - } ] } } \ No newline at end of file diff --git a/data/dataPaths.json b/data/dataPaths.json index 4925e79b8..75f815558 100644 --- a/data/dataPaths.json +++ b/data/dataPaths.json @@ -2064,12 +2064,12 @@ "language": "bedrock/1.20.10" }, "1.21.0": { - "blocks": "bedrock/1.20.71", - "blockStates": "bedrock/1.20.71", - "blockCollisionShapes": "bedrock/1.20.71", + "blocks": "bedrock/1.21.0", + "blockStates": "bedrock/1.21.0", + "blockCollisionShapes": "bedrock/1.21.0", "biomes": "bedrock/1.20.0", - "entities": "bedrock/1.19.1", - "items": "bedrock/1.20.0", + "entities": "bedrock/1.21.0", + "items": "bedrock/1.21.0", "recipes": "bedrock/1.19.10", "instruments": "bedrock/1.17.0", "materials": "pc/1.17", @@ -2078,8 +2078,8 @@ "protocol": "bedrock/1.21.0", "windows": "bedrock/1.16.201", "steve": "bedrock/1.20.80", - "blocksB2J": "bedrock/1.20.71", - "blocksJ2B": "bedrock/1.20.71", + "blocksB2J": "bedrock/1.21.0", + "blocksJ2B": "bedrock/1.21.0", "proto": "bedrock/latest", "types": "bedrock/latest", "version": "bedrock/1.21.0",